2015-01-16 21:48:59 +01:00
|
|
|
{ pkgs }:
|
|
|
|
|
|
|
|
with import ./lib.nix { inherit pkgs; };
|
|
|
|
|
|
|
|
self: super: {
|
|
|
|
|
2015-03-09 20:11:23 +01:00
|
|
|
# Suitable LLVM version.
|
|
|
|
llvmPackages = pkgs.llvmPackages_34;
|
|
|
|
|
2015-01-16 21:48:59 +01:00
|
|
|
# Disable GHC 7.0.x core libraries.
|
|
|
|
array = null;
|
|
|
|
base = null;
|
|
|
|
bin-package-db = null;
|
|
|
|
bytestring = null;
|
|
|
|
Cabal = null;
|
|
|
|
containers = null;
|
|
|
|
directory = null;
|
|
|
|
extensible-exceptions = null;
|
|
|
|
ffi = null;
|
|
|
|
filepath = null;
|
|
|
|
ghc-binary = null;
|
|
|
|
ghc-prim = null;
|
|
|
|
haskell2010 = null;
|
|
|
|
haskell98 = null;
|
|
|
|
hpc = null;
|
|
|
|
integer-gmp = null;
|
|
|
|
old-locale = null;
|
|
|
|
old-time = null;
|
|
|
|
pretty = null;
|
|
|
|
process = null;
|
|
|
|
random = null;
|
|
|
|
rts = null;
|
|
|
|
template-haskell = null;
|
|
|
|
time = null;
|
|
|
|
unix = null;
|
|
|
|
|
2015-10-16 15:12:27 +02:00
|
|
|
# These packages are core libraries in GHC 7.10.x, but not here.
|
2015-12-30 19:16:19 +01:00
|
|
|
binary = self.binary_0_7_6_1;
|
2015-10-16 15:12:27 +02:00
|
|
|
deepseq = self.deepseq_1_3_0_1;
|
|
|
|
haskeline = self.haskeline_0_7_2_1;
|
|
|
|
hoopl = self.hoopl_3_10_2_0;
|
|
|
|
terminfo = self.terminfo_0_4_0_1;
|
2015-03-09 11:42:37 +01:00
|
|
|
transformers = self.transformers_0_4_3_0;
|
2015-10-16 15:12:27 +02:00
|
|
|
xhtml = self.xhtml_3000_2_1;
|
2015-01-16 21:48:59 +01:00
|
|
|
|
|
|
|
# https://github.com/tibbe/hashable/issues/85
|
|
|
|
hashable = dontCheck super.hashable;
|
|
|
|
|
2015-05-20 12:13:13 +02:00
|
|
|
# https://github.com/peti/jailbreak-cabal/issues/9
|
|
|
|
jailbreak-cabal = super.jailbreak-cabal.override {
|
2016-10-19 15:11:51 +02:00
|
|
|
Cabal = self.Cabal_1_20_0_4.override { deepseq = self.deepseq_1_3_0_1; };
|
2015-05-20 12:13:13 +02:00
|
|
|
};
|
2015-01-16 21:48:59 +01:00
|
|
|
|
|
|
|
# Haddock chokes on the prologue from the cabal file.
|
|
|
|
ChasingBottoms = dontHaddock super.ChasingBottoms;
|
|
|
|
|
2015-01-19 14:59:04 +01:00
|
|
|
# https://github.com/haskell/containers/issues/134
|
|
|
|
containers_0_4_2_1 = doJailbreak super.containers_0_4_2_1;
|
|
|
|
|
|
|
|
# These packages need more recent versions of core libraries to compile.
|
2015-01-20 14:46:21 +01:00
|
|
|
happy = addBuildTools super.happy [self.containers_0_4_2_1 self.deepseq_1_3_0_1];
|
2015-01-19 14:59:04 +01:00
|
|
|
|
2015-01-20 14:54:54 +01:00
|
|
|
# Setup: Can't find transitive deps for haddock
|
|
|
|
doctest = dontHaddock super.doctest;
|
|
|
|
|
2015-04-19 20:17:35 +02:00
|
|
|
# Needs hashable on pre 7.10.x compilers.
|
2016-01-26 14:01:40 +01:00
|
|
|
nats_1 = addBuildDepend super.nats_1 self.hashable;
|
2015-04-19 20:17:35 +02:00
|
|
|
nats = addBuildDepend super.nats self.hashable;
|
|
|
|
|
2015-08-05 14:26:42 +02:00
|
|
|
# Newer versions require bytestring >=0.10.
|
|
|
|
tar = super.tar_0_4_1_0;
|
|
|
|
|
2015-10-13 20:00:26 +02:00
|
|
|
# Needs void on pre 7.10.x compilers.
|
|
|
|
conduit = addBuildDepend super.conduit self.void;
|
|
|
|
|
2016-04-14 11:40:19 +02:00
|
|
|
# Needs tagged on pre 7.6.x compilers.
|
|
|
|
reflection = addBuildDepend super.reflection self.tagged;
|
|
|
|
|
2016-04-18 11:25:52 +02:00
|
|
|
# Needs nats on pre 7.6.x compilers.
|
|
|
|
semigroups = addBuildDepend super.semigroups self.nats;
|
|
|
|
|
2015-01-16 21:48:59 +01:00
|
|
|
}
|