2017-08-01 18:44:08 +02:00
|
|
|
{ pkgs, haskellLib }:
|
2017-06-15 18:22:29 +02:00
|
|
|
|
2017-08-01 18:44:08 +02:00
|
|
|
with haskellLib;
|
2017-06-15 18:22:29 +02:00
|
|
|
|
|
|
|
self: super: {
|
|
|
|
|
|
|
|
# Suitable LLVM version.
|
2020-01-18 19:40:12 +01:00
|
|
|
llvmPackages = pkgs.llvmPackages;
|
2017-06-15 18:22:29 +02:00
|
|
|
|
|
|
|
# Disable GHC 8.2.x core libraries.
|
|
|
|
array = null;
|
|
|
|
base = null;
|
|
|
|
binary = null;
|
|
|
|
bytestring = null;
|
|
|
|
Cabal = null;
|
|
|
|
containers = null;
|
|
|
|
deepseq = null;
|
|
|
|
directory = null;
|
|
|
|
filepath = null;
|
|
|
|
ghc-boot = null;
|
|
|
|
ghc-boot-th = null;
|
|
|
|
ghc-compact = null;
|
2019-02-13 13:28:10 +01:00
|
|
|
ghc-heap = null;
|
2017-06-15 18:22:29 +02:00
|
|
|
ghc-prim = null;
|
|
|
|
ghci = null;
|
|
|
|
haskeline = null;
|
|
|
|
hoopl = null;
|
|
|
|
hpc = null;
|
|
|
|
integer-gmp = null;
|
|
|
|
pretty = null;
|
|
|
|
process = null;
|
|
|
|
rts = null;
|
|
|
|
template-haskell = null;
|
|
|
|
terminfo = null;
|
|
|
|
time = null;
|
|
|
|
transformers = null;
|
|
|
|
unix = null;
|
|
|
|
xhtml = null;
|
|
|
|
|
2018-07-10 01:23:50 +02:00
|
|
|
# These are now core libraries in GHC 8.4.x.
|
|
|
|
mtl = self.mtl_2_2_2;
|
2019-08-11 09:59:48 +02:00
|
|
|
parsec = self.parsec_3_1_14_0;
|
2018-09-23 12:49:46 +02:00
|
|
|
stm = self.stm_2_5_0_0;
|
2019-08-11 09:59:48 +02:00
|
|
|
text = self.text_1_2_4_0;
|
2018-07-10 01:23:50 +02:00
|
|
|
|
2019-09-05 14:20:03 +02:00
|
|
|
# Needs Cabal 3.0.x.
|
2020-04-03 21:03:40 +02:00
|
|
|
jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_3_2_0_0; };
|
2017-06-15 18:22:29 +02:00
|
|
|
|
|
|
|
# https://github.com/bmillwood/applicative-quoters/issues/6
|
|
|
|
applicative-quoters = appendPatch super.applicative-quoters (pkgs.fetchpatch {
|
|
|
|
url = "https://patch-diff.githubusercontent.com/raw/bmillwood/applicative-quoters/pull/7.patch";
|
|
|
|
sha256 = "026vv2k3ks73jngwifszv8l59clg88pcdr4mz0wr0gamivkfa1zy";
|
|
|
|
});
|
|
|
|
|
2017-06-28 18:54:27 +02:00
|
|
|
# https://github.com/nominolo/ghc-syb/issues/20
|
|
|
|
ghc-syb-utils = dontCheck super.ghc-syb-utils;
|
2017-06-15 18:22:29 +02:00
|
|
|
|
2017-12-22 15:01:03 +01:00
|
|
|
# Upstream failed to distribute the testsuite for 8.2
|
|
|
|
# https://github.com/alanz/ghc-exactprint/pull/60
|
|
|
|
ghc-exactprint = dontCheck super.ghc-exactprint;
|
|
|
|
|
2017-12-22 19:31:35 +01:00
|
|
|
# Reduction stack overflow; size = 38
|
|
|
|
# https://github.com/jystic/hadoop-tools/issues/31
|
|
|
|
hadoop-rpc =
|
|
|
|
let patch = pkgs.fetchpatch
|
2020-04-01 03:11:51 +02:00
|
|
|
{ url = "https://github.com/shlevy/hadoop-tools/commit/f03a46cd15ce3796932c3382e48bcbb04a6ee102.patch";
|
2017-12-22 19:31:35 +01:00
|
|
|
sha256 = "09ls54zy6gx84fmzwgvx18ssgm740cwq6ds70p0p125phi54agcp";
|
|
|
|
stripLen = 1;
|
|
|
|
};
|
|
|
|
in appendPatch super.hadoop-rpc patch;
|
2017-12-22 20:04:59 +01:00
|
|
|
|
|
|
|
# Custom Setup.hs breaks with Cabal 2
|
|
|
|
# https://github.com/NICTA/coordinate/pull/4
|
|
|
|
coordinate =
|
|
|
|
let patch = pkgs.fetchpatch
|
2020-04-01 03:11:51 +02:00
|
|
|
{ url = "https://github.com/NICTA/coordinate/pull/4.patch";
|
2017-12-22 20:04:59 +01:00
|
|
|
sha256 = "06sfxk5cyd8nqgjyb95jkihxxk8m6dw9m3mlv94sm2qwylj86gqy";
|
|
|
|
};
|
|
|
|
in appendPatch super.coordinate patch;
|
2018-01-08 13:36:13 +01:00
|
|
|
|
|
|
|
# https://github.com/purescript/purescript/issues/3189
|
|
|
|
purescript = doJailbreak (super.purescript);
|
|
|
|
|
2018-03-10 13:45:10 +01:00
|
|
|
# These packages need Cabal 2.2.x, which is not the default.
|
2018-03-29 11:07:25 +02:00
|
|
|
cabal2nix = super.cabal2nix.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
|
|
|
|
cabal2spec = super.cabal2spec.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
|
2018-04-28 12:32:01 +02:00
|
|
|
distribution-nixpkgs = super.distribution-nixpkgs.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
|
|
|
|
stack = super.stack.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
|
2018-03-09 15:40:16 +01:00
|
|
|
|
2019-02-24 10:06:07 +01:00
|
|
|
# Older GHC versions need these additional dependencies.
|
2018-09-17 03:50:53 +02:00
|
|
|
ListLike = addBuildDepend super.ListLike self.semigroups;
|
2019-02-24 10:06:07 +01:00
|
|
|
base-compat-batteries = addBuildDepend super.base-compat-batteries self.contravariant;
|
2018-09-17 03:50:53 +02:00
|
|
|
|
2020-04-17 20:41:50 +02:00
|
|
|
# ghc versions prior to 8.8.x needs additional dependency to compile successfully.
|
|
|
|
ghc-lib-parser-ex = addBuildDepend super.ghc-lib-parser-ex self.ghc-lib-parser;
|
|
|
|
|
2018-08-13 20:06:09 +02:00
|
|
|
}
|