tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ghc: Use stable URL for deterministic profiling patch.
Shea Levy
7 years ago
28e51c7c
e04f5c92
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
ghc
8.4.3.nix
+3
-2
pkgs/development/compilers/ghc/8.4.3.nix
···
99
extraPrefix = "utils/hsc2hs/";
100
stripLen = 1;
101
})] ++ stdenv.lib.optional deterministicProfiling
102
-
(fetchpatch {
103
-
url = "https://phabricator-files.haskell.org/file/data/yd2fclrwulila2quki5q/PHID-FILE-lr2j63hkglwauprxycrt/D4388.diff";
0
104
sha256 = "0w6sdcvnqjlnlzpvnzw20b80v150ijjyjvs9548ildc1928j0w7s";
105
})
106
++ stdenv.lib.optional stdenv.isDarwin ./backport-dylib-command-size-limit.patch;
···
99
extraPrefix = "utils/hsc2hs/";
100
stripLen = 1;
101
})] ++ stdenv.lib.optional deterministicProfiling
102
+
(fetchpatch rec {
103
+
url = "http://tarballs.nixos.org/sha256/${sha256}";
104
+
name = "D4388.diff";
105
sha256 = "0w6sdcvnqjlnlzpvnzw20b80v150ijjyjvs9548ildc1928j0w7s";
106
})
107
++ stdenv.lib.optional stdenv.isDarwin ./backport-dylib-command-size-limit.patch;