mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
44 lines
904 B
Nix
44 lines
904 B
Nix
![]() |
{ lib, ... }:
|
||
|
{
|
||
|
name = "glibLocales-custom-builds";
|
||
|
meta.maintainers = with lib.maintainers; [ doronbehar ];
|
||
|
|
||
|
nodes = {
|
||
|
nonUTF8Charset = {
|
||
|
i18n = {
|
||
|
defaultLocale = "en_US";
|
||
|
defaultCharset = "ISO-8859-1";
|
||
|
};
|
||
|
};
|
||
|
extraLocales1 = {
|
||
|
i18n = {
|
||
|
defaultLocale = "en_US.UTF-8";
|
||
|
extraLocales = [
|
||
|
"nl_NL.UTF-8/UTF-8"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
extraLocaleSettings = {
|
||
|
i18n = {
|
||
|
defaultLocale = "en_US.UTF-8";
|
||
|
extraLocaleSettings = {
|
||
|
LC_MESSAGES = "en_US.UTF-8";
|
||
|
LC_TIME = "de_DE.UTF-8";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
localeCharsets = {
|
||
|
i18n = {
|
||
|
defaultLocale = "en_US.UTF-8";
|
||
|
extraLocaleSettings = {
|
||
|
LC_TIME = "de_DE";
|
||
|
};
|
||
|
localeCharsets = {
|
||
|
LC_TIME = "ISO-8859-1";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
testScript = { nodes, ... }: "";
|
||
|
}
|