2016-01-13 12:03:55 -08:00
|
|
|
{ pkgs }:
|
|
|
|
|
|
|
|
with import ./lib.nix { inherit pkgs; };
|
|
|
|
|
|
|
|
self: super: {
|
2016-01-16 08:40:19 -08:00
|
|
|
|
|
|
|
# Suitable LLVM version.
|
|
|
|
llvmPackages = pkgs.llvmPackages_35;
|
|
|
|
|
2016-01-13 12:03:55 -08: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 14:06:53 -08:00
|
|
|
|
2016-01-31 13:28:05 -08:00
|
|
|
# cabal-install can use the native Cabal library.
|
|
|
|
cabal-install = super.cabal-install.override { Cabal = null; };
|
|
|
|
|
2016-01-16 08:40:19 -08:00
|
|
|
# jailbreak-cabal can use the native Cabal library.
|
2016-01-26 15:17:48 -08:00
|
|
|
jailbreak-cabal = super.jailbreak-cabal.override { Cabal = null; };
|
2016-01-16 08:40:19 -08:00
|
|
|
|
|
|
|
# https://github.com/hspec/HUnit/issues/7
|
|
|
|
HUnit = dontCheck super.HUnit;
|
|
|
|
|
2016-01-25 03:14:40 -08:00
|
|
|
# https://github.com/hspec/hspec/issues/253
|
|
|
|
hspec-core = dontCheck super.hspec-core;
|
|
|
|
|
2016-03-21 05:17:25 -07:00
|
|
|
# Deviate from Stackage here to fix lots of builds.
|
2016-04-06 03:22:21 -07:00
|
|
|
transformers-compat = self.transformers-compat_0_5_1_4;
|
2016-03-21 05:17:25 -07:00
|
|
|
|
2016-03-31 03:06:50 -07:00
|
|
|
# https://github.com/sol/doctest/issues/125
|
|
|
|
doctest = self.doctest_0_11_0;
|
|
|
|
|
2016-04-06 03:21:38 -07:00
|
|
|
# No modules defined for this compiler.
|
|
|
|
fail = dontHaddock super.fail;
|
|
|
|
|
2016-04-06 03:21:58 -07:00
|
|
|
# Version 4.x doesn't compile with transformers 0.5 or later.
|
|
|
|
comonad_5 = dontCheck super.comonad_5; # https://github.com/ekmett/comonad/issues/33
|
|
|
|
comonad = self.comonad_5;
|
|
|
|
|
2016-04-13 00:37:16 -07:00
|
|
|
# Versions <= 5.2 don't compile with transformers 0.5 or later.
|
|
|
|
bifunctors = self.bifunctors_5_3;
|
|
|
|
|
2016-04-13 00:44:36 -07:00
|
|
|
# https://github.com/ekmett/semigroupoids/issues/42
|
|
|
|
semigroupoids = dontCheck super.semigroupoids;
|
|
|
|
|
2016-01-13 12:03:55 -08:00
|
|
|
}
|