mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
51 lines
999 B
Nix
51 lines
999 B
Nix
|
{ pkgs, haskellLib }:
|
||
|
|
||
|
let
|
||
|
inherit (pkgs) lib;
|
||
|
in
|
||
|
|
||
|
with haskellLib;
|
||
|
|
||
|
self: super: {
|
||
|
llvmPackages = lib.dontRecurseIntoAttrs self.ghc.llvmPackages;
|
||
|
|
||
|
# Disable GHC core libraries
|
||
|
array = null;
|
||
|
base = null;
|
||
|
binary = null;
|
||
|
bytestring = null;
|
||
|
Cabal = null;
|
||
|
Cabal-syntax = null;
|
||
|
containers = null;
|
||
|
deepseq = null;
|
||
|
directory = null;
|
||
|
exceptions = null;
|
||
|
filepath = null;
|
||
|
ghc-bignum = null;
|
||
|
ghc-boot = null;
|
||
|
ghc-boot-th = null;
|
||
|
ghc-compact = null;
|
||
|
ghc-heap = null;
|
||
|
ghc-prim = null;
|
||
|
ghci = null;
|
||
|
haskeline = null;
|
||
|
hpc = null;
|
||
|
integer-gmp = null;
|
||
|
libiserv = null;
|
||
|
mtl = null;
|
||
|
parsec = null;
|
||
|
pretty = null;
|
||
|
process = null;
|
||
|
rts = null;
|
||
|
stm = null;
|
||
|
system-cxx-std-lib = null;
|
||
|
template-haskell = null;
|
||
|
# terminfo is not built if GHC is a cross compiler
|
||
|
terminfo = if pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform then null else self.terminfo_0_4_1_5;
|
||
|
text = null;
|
||
|
time = null;
|
||
|
transformers = null;
|
||
|
unix = null;
|
||
|
xhtml = null;
|
||
|
}
|