2021-01-23 15:56:38 +01:00
|
|
|
{
|
|
|
|
i18n = { ... }: {
|
|
|
|
config = {
|
|
|
|
nmt.script = ''
|
|
|
|
hmEnvFile=home-path/etc/profile.d/hm-session-vars.sh
|
|
|
|
assertFileExists $hmEnvFile
|
|
|
|
assertFileRegex $hmEnvFile \
|
|
|
|
'^export LOCALE_ARCHIVE_._..=".*/lib/locale/locale-archive"$'
|
|
|
|
|
|
|
|
envFile=home-files/.config/environment.d/10-home-manager.conf
|
|
|
|
assertFileExists $envFile
|
|
|
|
assertFileRegex $envFile \
|
|
|
|
'^LOCALE_ARCHIVE_._..=.*/lib/locale/locale-archive$'
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
2023-07-04 11:28:25 +02:00
|
|
|
|
|
|
|
i18n-custom-locales = { pkgs, ... }: {
|
|
|
|
config = let stub = pkgs.glibcLocalesCustom;
|
|
|
|
in {
|
|
|
|
test.stubs.glibcLocalesCustom = {
|
|
|
|
inherit (pkgs.glibcLocales) version;
|
|
|
|
outPath = null; # we need a real path for this stub
|
|
|
|
};
|
|
|
|
|
|
|
|
i18n.glibcLocales = stub;
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
hmEnvFile=home-path/etc/profile.d/hm-session-vars.sh
|
|
|
|
assertFileExists $hmEnvFile
|
|
|
|
assertFileRegex $hmEnvFile 'LOCALE_ARCHIVE_.*${stub}'
|
|
|
|
|
|
|
|
envFile=home-files/.config/environment.d/10-home-manager.conf
|
|
|
|
assertFileExists $envFile
|
|
|
|
assertFileRegex $envFile 'LOCALE_ARCHIVE_.*${stub}'
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
2021-01-23 15:56:38 +01:00
|
|
|
}
|