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: ab7ba2fc1503
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 86705445dc43
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 31, 2018

  1. gnumake: mark head variant lowPrio

    Fixes #38257
    LnL7 committed Mar 31, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    LnL7 Daiderd Jordan
    Copy the full SHA
    8670544 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/top-level/all-packages.nix
6 changes: 3 additions & 3 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -7857,8 +7857,8 @@ with pkgs;
gnumake42 = callPackage ../development/tools/build-managers/gnumake/4.2 { };
gnumake = if hostPlatform.isRiscV # Technically this check should be for glibc version.
then gnumake42HEAD
else gnumake42;
gnumake42HEAD = callPackage ../development/tools/build-managers/gnumake/4.2/head.nix { };
else gnumake42;
gnumake42HEAD = lowPrio (callPackage ../development/tools/build-managers/gnumake/4.2/head.nix { });

gnustep = recurseIntoAttrs (callPackage ../desktops/gnustep {});

@@ -9570,7 +9570,7 @@ with pkgs;
libantlr3c = callPackage ../development/libraries/libantlr3c {};

libaom = callPackage ../development/libraries/libaom { };

libappindicator-gtk2 = callPackage ../development/libraries/libappindicator { gtkVersion = "2"; };
libappindicator-gtk3 = callPackage ../development/libraries/libappindicator { gtkVersion = "3"; };