biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / haskell-modules / configuration-ghc-9.12.x.nix
blobadc18963062021d376f9d7d52596e5a7e148470e
1 { pkgs, haskellLib }:
3 let
4   inherit (pkgs) lib;
6 in
8 self: super: {
9   llvmPackages = lib.dontRecurseIntoAttrs self.ghc.llvmPackages;
11   # Disable GHC core libraries
12   array = null;
13   base = null;
14   binary = null;
15   bytestring = null;
16   Cabal = null;
17   Cabal-syntax = null;
18   containers = null;
19   deepseq = null;
20   directory = null;
21   exceptions = null;
22   filepath = null;
23   ghc-bignum = null;
24   ghc-boot = null;
25   ghc-boot-th = null;
26   ghc-compact = null;
27   ghc-experimental = null;
28   ghc-heap = null;
29   ghc-internal = null;
30   ghc-platform = null;
31   ghc-prim = null;
32   ghc-toolchain = null;
33   ghci = null;
34   haskeline = null;
35   hpc = null;
36   integer-gmp = null;
37   mtl = null;
38   os-string = null;
39   parsec = null;
40   pretty = null;
41   process = null;
42   rts = null;
43   semaphore-compat = null;
44   stm = null;
45   system-cxx-std-lib = null;
46   template-haskell = null;
47   # GHC only builds terminfo if it is a native compiler
48   terminfo = if pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform then null else haskellLib.doDistribute self.terminfo_0_4_1_6;
49   text = null;
50   time = null;
51   transformers = null;
52   unix = null;
53   xhtml = null;