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

Commits on Apr 26, 2020

  1. ninja: fix 404'ing patch

    Kyndig on IRC noticed that building `ninja` from source would fail due
    to a patch 404'ing (because the repo appears to no longer exist). Fetch
    from upstream instead.
    
    (cherry picked from commit 91d4e9a)
    cc #85742
    cole-h authored and veprbl committed Apr 26, 2020
    Copy the full SHA
    27aaaa5 View commit details
Showing with 1 addition and 2 deletions.
  1. +1 −2 pkgs/development/tools/build-managers/ninja/default.nix
3 changes: 1 addition & 2 deletions pkgs/development/tools/build-managers/ninja/default.nix
Original file line number Diff line number Diff line change
@@ -21,10 +21,9 @@ stdenv.mkDerivation rec {
sha256 = "0zsg46jflsh644jccrcgyfalr7fkzrv041kyi8644nyk923gcrl9";
})
# https://github.com/ninja-build/ninja/issues/1510 - fix w/musl, possibly BSDs?
#
(fetchpatch {
name = "fix-issue-1510.patch";
url = https://github.com/makepost/ninja/commit/567815df38a2ff54ad7478a90bd75c91e434236a.patch;
url = "https://github.com/ninja-build/ninja/commit/567815df38a2ff54ad7478a90bd75c91e434236a.patch";
sha256 = "0zd0xyi7h2066nw1dsk76c7yf71b0f7v4p5nljda7jxi01vpdh69";
})
];