nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix

58 lines
1.3 KiB
Nix
Raw Normal View History

2016-01-13 20:03:55 +00:00
{ pkgs }:
with import ./lib.nix { inherit pkgs; };
self: super: {
# 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
# jailbreak-cabal can use the native Cabal library.
2016-01-13 22:06:53 +00:00
jailbreak-cabal = super.jailbreak-cabal.override {
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";
});
};
# Older versions of QuickCheck don't support our version of Template Haskell.
QuickCheck = self.QuickCheck_2_8_2;
# Older versions don't support our version of transformers.
transformers-compat = self.transformers-compat_0_5_1_4;
# https://github.com/hspec/HUnit/issues/7
HUnit = dontCheck super.HUnit;
# https://github.com/hspec/hspec/issues/253
hspec-core = dontCheck super.hspec-core;
2016-01-13 20:03:55 +00:00
}