summary refs log tree commit diff
diff options
context:
space:
mode:
authorDennis Gosnell <cdep.illabout@gmail.com>2020-03-30 10:13:05 +0900
committerGitHub <noreply@github.com>2020-03-30 10:13:05 +0900
commit570e3edc8519c666b74a5ca469e1dd286902691d (patch)
tree0f1c977f9575a2d8c92fc69afb609db4871d7a76
parentc0a8c81cf2958a02cb15c006e4d25203e194fdac (diff)
parent29ca177c684cb42f0ea57171be5653b9b5060ba7 (diff)
downloadnixpkgs-570e3edc8519c666b74a5ca469e1dd286902691d.tar
nixpkgs-570e3edc8519c666b74a5ca469e1dd286902691d.tar.gz
nixpkgs-570e3edc8519c666b74a5ca469e1dd286902691d.tar.bz2
nixpkgs-570e3edc8519c666b74a5ca469e1dd286902691d.tar.lz
nixpkgs-570e3edc8519c666b74a5ca469e1dd286902691d.tar.xz
nixpkgs-570e3edc8519c666b74a5ca469e1dd286902691d.tar.zst
nixpkgs-570e3edc8519c666b74a5ca469e1dd286902691d.zip
Merge pull request #83697 from nomeata/no-git.haskell.org
ghc-8.4.4.nix: Do not use git.haskell.org
-rw-r--r--pkgs/development/compilers/ghc/8.4.4.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/ghc/8.4.4.nix b/pkgs/development/compilers/ghc/8.4.4.nix
index 4bebd63956e..57d6a108de0 100644
--- a/pkgs/development/compilers/ghc/8.4.4.nix
+++ b/pkgs/development/compilers/ghc/8.4.4.nix
@@ -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";
     });