forked from mirrors/nixpkgs
Merge pull request #58197 from tohl/firefox-bin-systemLocale
firefox-bin with overrideable locale, tested on nixos x86_64
This commit is contained in:
commit
a268365662
|
@ -50,6 +50,7 @@
|
||||||
, gnupg
|
, gnupg
|
||||||
, ffmpeg
|
, ffmpeg
|
||||||
, runtimeShell
|
, runtimeShell
|
||||||
|
, systemLocale ? config.i18n.defaultLocale or "en-US"
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -69,8 +70,6 @@ let
|
||||||
sourceMatches = locale: source:
|
sourceMatches = locale: source:
|
||||||
(isPrefixOf source.locale locale) && source.arch == arch;
|
(isPrefixOf source.locale locale) && source.arch == arch;
|
||||||
|
|
||||||
systemLocale = config.i18n.defaultLocale or "en-US";
|
|
||||||
|
|
||||||
policies = {
|
policies = {
|
||||||
DisableAppUpdate = true;
|
DisableAppUpdate = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue