nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
2016-01-13 12:04:18 -08:00

33 lines
560 B
Nix

{ pkgs }:
with import ./lib.nix { inherit pkgs; };
self: super: {
# 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;
}