Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a62033452796
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a268365662a3
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 24, 2019

  1. firefox-bin: allow overriding systemLocale

    Tomas Hlavaty committed Mar 24, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    alexandre-abrioux Alexandre ABRIOUX
    Copy the full SHA
    377898b View commit details

Commits on Mar 26, 2019

  1. Merge pull request #58197 from tohl/firefox-bin-systemLocale

    firefox-bin with overrideable locale, tested on nixos x86_64
    infinisil authored Mar 26, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    alexandre-abrioux Alexandre ABRIOUX
    Copy the full SHA
    a268365 View commit details
Showing with 1 addition and 2 deletions.
  1. +1 −2 pkgs/applications/networking/browsers/firefox-bin/default.nix
Original file line number Diff line number Diff line change
@@ -50,6 +50,7 @@
, gnupg
, ffmpeg
, runtimeShell
, systemLocale ? config.i18n.defaultLocale or "en-US"
}:

let
@@ -69,8 +70,6 @@ let
sourceMatches = locale: source:
(isPrefixOf source.locale locale) && source.arch == arch;

systemLocale = config.i18n.defaultLocale or "en-US";

policies = {
DisableAppUpdate = true;
};