2016-01-13 20:03:55 +00:00
|
|
|
{ pkgs }:
|
|
|
|
|
|
|
|
with import ./lib.nix { inherit pkgs; };
|
|
|
|
|
|
|
|
self: super: {
|
2016-01-16 16:40:19 +00:00
|
|
|
|
|
|
|
# Suitable LLVM version.
|
|
|
|
llvmPackages = pkgs.llvmPackages_35;
|
|
|
|
|
2016-01-13 20:03:55 +00:00
|
|
|
# Disable GHC 8.0.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-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;
|
2016-01-13 22:06:53 +00:00
|
|
|
|
2016-01-16 16:40:19 +00:00
|
|
|
# jailbreak-cabal can use the native Cabal library.
|
2016-01-13 22:06:53 +00:00
|
|
|
jailbreak-cabal = super.jailbreak-cabal.override {
|
2016-01-16 16:40:19 +00:00
|
|
|
Cabal = null;
|
2016-01-13 22:06:53 +00:00
|
|
|
mkDerivation = drv: self.mkDerivation (drv // {
|
|
|
|
preConfigure = "sed -i -e 's/Cabal == 1.20\\.\\*/Cabal >= 1.23/' jailbreak-cabal.cabal";
|
|
|
|
});
|
|
|
|
};
|
2016-01-16 16:40:19 +00:00
|
|
|
|
|
|
|
# Older versions of QuickCheck don't support our version of Template Haskell.
|
|
|
|
QuickCheck = self.QuickCheck_2_8_2;
|
|
|
|
|
2016-01-17 09:50:29 +00:00
|
|
|
# Older versions don't support our version of transformers.
|
|
|
|
transformers-compat = self.transformers-compat_0_5_1_4;
|
|
|
|
|
2016-01-16 16:40:19 +00:00
|
|
|
# https://github.com/hspec/HUnit/issues/7
|
|
|
|
HUnit = dontCheck super.HUnit;
|
|
|
|
|
2016-01-25 11:14:40 +00:00
|
|
|
# https://github.com/hspec/hspec/issues/253
|
|
|
|
hspec-core = dontCheck super.hspec-core;
|
|
|
|
|
2016-01-13 20:03:55 +00:00
|
|
|
}
|