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

Commits on Mar 30, 2020

  1. ghc-8.4.4.nix: Do not use git.haskell.org

    which was deprecated in 2018 and is now gone for good. I guess many
    won’t notice because the nix-cache kept the files around?
    
    (cherry picked from commit
    b872b8a and 29ca177)
    nomeata authored and vcunat committed Mar 30, 2020
    Copy the full SHA
    ef0d465 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/compilers/ghc/8.4.4.nix
4 changes: 2 additions & 2 deletions pkgs/development/compilers/ghc/8.4.4.nix
Original file line number Diff line number Diff line change
@@ -96,7 +96,7 @@ stdenv.mkDerivation (rec {
outputs = [ "out" "doc" ];

patches = [(fetchpatch {
url = "https://git.haskell.org/hsc2hs.git/patch/738f3666c878ee9e79c3d5e819ef8b3460288edf";
url = "https://github.com/haskell/hsc2hs/commit/738f3666c878ee9e79c3d5e819ef8b3460288edf.diff";
sha256 = "0plzsbfaq6vb1023lsarrjglwgr9chld4q3m99rcfzx0yx5mibp3";
extraPrefix = "utils/hsc2hs/";
stripLen = 1;
@@ -112,7 +112,7 @@ stdenv.mkDerivation (rec {
})
++ stdenv.lib.optional stdenv.isDarwin ./backport-dylib-command-size-limit.patch
++ stdenv.lib.optional (targetPlatform.isAarch32 || targetPlatform.isAarch64) (fetchpatch {
url = "https://git.haskell.org/ghc.git/patch/d8495549ba9d194815c2d0eaee6797fc7c00756a";
url = "https://github.com/ghc/ghc/commit/d8495549ba9d194815c2d0eaee6797fc7c00756a.diff";
sha256 = "1yjcma507c609bcim4rnxq0gaj2dg4d001jklmbpbqpzqzxkn5sz";
});