wine locale

This commit is contained in:
caandt 2025-01-19 00:47:48 -05:00
parent b52df5381d
commit 40770de013

View file

@ -29,6 +29,15 @@
cifs-utils = super.cifs-utils.overrideAttrs (old: { cifs-utils = super.cifs-utils.overrideAttrs (old: {
buildInputs = lib.lists.remove pkgs.libcap old.buildInputs; buildInputs = lib.lists.remove pkgs.libcap old.buildInputs;
}); });
wine = pkgs.symlinkJoin {
name = "wine";
paths = [super.wine];
buildInputs = [pkgs.makeWrapper];
postBuild = ''
wrapProgram $out/bin/wine \
--set LC_ALL "ja_JP.UTF-8"
'';
};
}) })
]; ];
} }