3
0
Fork 0
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:
Silvan Mosberger 2019-03-26 06:01:19 +01:00 committed by GitHub
commit a268365662
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}; };