2021-05-31 00:24:21 +02:00
|
|
|
{ pkgs, haskellLib }:
|
|
|
|
|
|
|
|
with haskellLib;
|
|
|
|
|
2021-12-24 21:12:56 +01:00
|
|
|
let
|
|
|
|
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
|
|
|
in
|
|
|
|
|
2021-05-31 00:24:21 +02:00
|
|
|
self: super: {
|
|
|
|
|
2021-11-23 16:11:37 +01:00
|
|
|
llvmPackages = pkgs.lib.dontRecurseIntoAttrs self.ghc.llvmPackages;
|
2021-05-31 00:24:21 +02:00
|
|
|
|
|
|
|
# Disable GHC 9.2.x core libraries.
|
|
|
|
array = null;
|
|
|
|
base = null;
|
|
|
|
binary = null;
|
|
|
|
bytestring = null;
|
|
|
|
Cabal = 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;
|
|
|
|
template-haskell = null;
|
2022-07-25 23:42:29 +02:00
|
|
|
# GHC only builds terminfo if it is a native compiler
|
2023-03-02 13:23:03 +01:00
|
|
|
terminfo = if pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform then null else self.terminfo_0_4_1_6;
|
2021-05-31 00:24:21 +02:00
|
|
|
text = null;
|
|
|
|
time = null;
|
|
|
|
transformers = null;
|
|
|
|
unix = null;
|
2022-04-29 15:27:02 +02:00
|
|
|
# GHC only bundles the xhtml library if haddock is enabled, check if this is
|
|
|
|
# still the case when updating: https://gitlab.haskell.org/ghc/ghc/-/blob/0198841877f6f04269d6050892b98b5c3807ce4c/ghc.mk#L463
|
2023-07-24 22:29:06 +02:00
|
|
|
xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_3_0_0;
|
2021-05-31 00:24:21 +02:00
|
|
|
|
2023-07-01 13:10:07 +02:00
|
|
|
# Need the Cabal-syntax-3.6.0.0 fake package for Cabal < 3.8 to allow callPackage and the constraint solver to work
|
|
|
|
Cabal-syntax = self.Cabal-syntax_3_6_0_0;
|
2023-07-01 19:31:29 +02:00
|
|
|
# These core package only exist for GHC >= 9.4. The best we can do is feign
|
|
|
|
# their existence to callPackages, but their is no shim for lower GHC versions.
|
|
|
|
system-cxx-std-lib = null;
|
2023-07-01 13:10:07 +02:00
|
|
|
|
2023-02-02 12:46:21 +01:00
|
|
|
# weeder == 2.5.* requires GHC 9.4
|
|
|
|
weeder = doDistribute self.weeder_2_4_1;
|
|
|
|
|
2023-07-01 13:57:38 +02:00
|
|
|
# For GHC < 9.4, some packages need data-array-byte as an extra dependency
|
|
|
|
hashable = addBuildDepends [ self.data-array-byte ] super.hashable;
|
|
|
|
primitive = addBuildDepends [ self.data-array-byte ] super.primitive;
|
|
|
|
|
2021-05-31 00:24:21 +02:00
|
|
|
# Jailbreaks & Version Updates
|
2022-02-20 01:14:16 +01:00
|
|
|
hashable-time = doJailbreak super.hashable-time;
|
2022-09-02 12:36:47 +02:00
|
|
|
|
2022-10-30 17:25:14 +01:00
|
|
|
# Depends on utf8-light which isn't maintained / doesn't support base >= 4.16
|
|
|
|
# https://github.com/haskell-infra/hackage-trustees/issues/347
|
|
|
|
# https://mail.haskell.org/pipermail/haskell-cafe/2022-October/135613.html
|
|
|
|
language-javascript_0_7_0_0 = dontCheck super.language-javascript_0_7_0_0;
|
|
|
|
|
2021-05-31 00:24:21 +02:00
|
|
|
# Apply patches from head.hackage.
|
2021-10-26 12:20:34 +02:00
|
|
|
language-haskell-extract = appendPatch (pkgs.fetchpatch {
|
2021-10-11 00:10:31 +02:00
|
|
|
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/dfd024c9a336c752288ec35879017a43bd7e85a0/patches/language-haskell-extract-0.2.4.patch";
|
|
|
|
sha256 = "0w4y3v69nd3yafpml4gr23l94bdhbmx8xky48a59lckmz5x9fgxv";
|
2021-10-26 12:20:34 +02:00
|
|
|
}) (doJailbreak super.language-haskell-extract);
|
2021-05-31 00:24:21 +02:00
|
|
|
|
2021-10-09 14:00:20 +02:00
|
|
|
# Tests depend on `parseTime` which is no longer available
|
|
|
|
hourglass = dontCheck super.hourglass;
|
2021-05-31 00:24:21 +02:00
|
|
|
|
2023-02-18 18:27:23 +01:00
|
|
|
# Needs to match ghc version
|
|
|
|
ghc-tags = doDistribute self.ghc-tags_1_5;
|
|
|
|
|
2022-09-20 02:49:35 +02:00
|
|
|
# For "ghc-lib" flag see https://github.com/haskell/haskell-language-server/issues/3185#issuecomment-1250264515
|
2022-11-22 17:59:14 +01:00
|
|
|
hlint = enableCabalFlag "ghc-lib" super.hlint;
|
2021-12-15 11:11:03 +01:00
|
|
|
|
2023-07-01 11:54:09 +02:00
|
|
|
# 0.2.2.3 requires Cabal >= 3.8
|
|
|
|
shake-cabal = doDistribute self.shake-cabal_0_2_2_2;
|
|
|
|
|
2021-12-15 11:11:03 +01:00
|
|
|
# https://github.com/sjakobi/bsb-http-chunked/issues/38
|
|
|
|
bsb-http-chunked = dontCheck super.bsb-http-chunked;
|
2022-01-21 13:18:37 +01:00
|
|
|
|
2023-06-02 15:05:01 +02:00
|
|
|
# https://github.com/NixOS/cabal2nix/issues/554
|
|
|
|
# https://github.com/clash-lang/clash-compiler/blob/f0f6275e19b8c672f042026c478484c5fd45191d/README.md#ghc-compatibility
|
|
|
|
clash-prelude = dontDistribute (markBroken super.clash-prelude);
|
|
|
|
|
2022-08-01 14:41:25 +02:00
|
|
|
# 2022-08-01: Tests are broken on ghc 9.2.4: https://github.com/wz1000/HieDb/issues/46
|
2022-11-23 22:56:32 +01:00
|
|
|
hiedb = dontCheck super.hiedb;
|
2022-02-05 03:14:13 +01:00
|
|
|
|
2023-02-13 23:48:34 +01:00
|
|
|
# Too strict upper bound on bytestring, relevant for GHC 9.2.6 specifically
|
|
|
|
# https://github.com/protolude/protolude/issues/127#issuecomment-1428807874
|
|
|
|
protolude = doJailbreak super.protolude;
|
|
|
|
|
2021-12-24 21:12:56 +01:00
|
|
|
# https://github.com/fpco/inline-c/pull/131
|
|
|
|
inline-c-cpp =
|
|
|
|
(if isDarwin then appendConfigureFlags ["--ghc-option=-fcompact-unwind"] else x: x)
|
|
|
|
super.inline-c-cpp;
|
2023-07-07 05:46:09 +02:00
|
|
|
|
|
|
|
# A given major version of ghc-exactprint only supports one version of GHC.
|
|
|
|
ghc-exactprint = super.ghc-exactprint_1_5_0;
|
2021-05-31 00:24:21 +02:00
|
|
|
}
|