nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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
b872b8a2009d68636fce8e4078dc9e65a70547fe and 29ca177c684cb42f0ea57171be5653b9b5060ba7)

authored by

Joachim Breitner and committed by
Vladimír Čunát
ef0d4659 5187b410

+2 -2
+2 -2
pkgs/development/compilers/ghc/8.4.4.nix
··· 96 96 outputs = [ "out" "doc" ]; 97 97 98 98 patches = [(fetchpatch { 99 - url = "https://git.haskell.org/hsc2hs.git/patch/738f3666c878ee9e79c3d5e819ef8b3460288edf"; 99 + url = "https://github.com/haskell/hsc2hs/commit/738f3666c878ee9e79c3d5e819ef8b3460288edf.diff"; 100 100 sha256 = "0plzsbfaq6vb1023lsarrjglwgr9chld4q3m99rcfzx0yx5mibp3"; 101 101 extraPrefix = "utils/hsc2hs/"; 102 102 stripLen = 1; ··· 112 112 }) 113 113 ++ stdenv.lib.optional stdenv.isDarwin ./backport-dylib-command-size-limit.patch 114 114 ++ stdenv.lib.optional (targetPlatform.isAarch32 || targetPlatform.isAarch64) (fetchpatch { 115 - url = "https://git.haskell.org/ghc.git/patch/d8495549ba9d194815c2d0eaee6797fc7c00756a"; 115 + url = "https://github.com/ghc/ghc/commit/d8495549ba9d194815c2d0eaee6797fc7c00756a.diff"; 116 116 sha256 = "1yjcma507c609bcim4rnxq0gaj2dg4d001jklmbpbqpzqzxkn5sz"; 117 117 }); 118 118