2020-09-30 08:50:24 +00:00
|
|
|
|
{ pkgs, haskellLib }:
|
|
|
|
|
|
|
|
|
|
with haskellLib;
|
|
|
|
|
|
2021-12-24 20:12:56 +00:00
|
|
|
|
let
|
|
|
|
|
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
2024-01-11 07:50:56 +00:00
|
|
|
|
inherit (pkgs) lib;
|
2021-12-24 20:12:56 +00:00
|
|
|
|
in
|
|
|
|
|
|
2020-09-30 08:50:24 +00:00
|
|
|
|
self: super: {
|
|
|
|
|
|
2021-11-23 15:11:37 +00:00
|
|
|
|
llvmPackages = pkgs.lib.dontRecurseIntoAttrs self.ghc.llvmPackages;
|
2020-09-30 08:50:24 +00:00
|
|
|
|
|
|
|
|
|
# Disable GHC 9.0.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 21:42:29 +00:00
|
|
|
|
# GHC only builds terminfo if it is a native compiler
|
2023-12-20 09:50:28 +00:00
|
|
|
|
terminfo = if pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform then null else doDistribute self.terminfo_0_4_1_6;
|
2020-09-30 08:50:24 +00:00
|
|
|
|
text = null;
|
|
|
|
|
time = null;
|
|
|
|
|
transformers = null;
|
|
|
|
|
unix = null;
|
2022-04-29 13:27:02 +00: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-12-20 09:50:28 +00:00
|
|
|
|
xhtml = if self.ghc.hasHaddock or true then null else doDistribute self.xhtml_3000_3_0_0;
|
2020-09-30 08:50:24 +00:00
|
|
|
|
|
2023-07-01 11:10:07 +00: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 17:31:29 +00: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 11:10:07 +00:00
|
|
|
|
|
2020-10-22 09:14:15 +00:00
|
|
|
|
# Jailbreaks & Version Updates
|
2022-02-15 18:25:49 +00:00
|
|
|
|
|
2023-07-01 11:57:38 +00:00
|
|
|
|
# For GHC < 9.4, some packages need data-array-byte as an extra dependency
|
|
|
|
|
primitive = addBuildDepends [ self.data-array-byte ] super.primitive;
|
2024-04-16 20:52:52 +00:00
|
|
|
|
# For GHC < 9.2, os-string is not required.
|
2023-07-01 11:57:38 +00:00
|
|
|
|
hashable = addBuildDepends [
|
|
|
|
|
self.data-array-byte
|
|
|
|
|
self.base-orphans
|
2024-04-16 20:52:52 +00:00
|
|
|
|
] (super.hashable.override {
|
|
|
|
|
os-string = null;
|
|
|
|
|
});
|
2023-07-01 11:57:38 +00:00
|
|
|
|
|
2024-03-23 12:15:46 +00:00
|
|
|
|
# Too strict lower bounds on base
|
|
|
|
|
primitive-addr = doJailbreak super.primitive-addr;
|
|
|
|
|
|
2020-10-22 09:14:15 +00:00
|
|
|
|
hashable-time = doJailbreak super.hashable-time;
|
2022-12-13 00:02:01 +00:00
|
|
|
|
tuple = addBuildDepend self.base-orphans super.tuple;
|
2021-01-02 18:40:16 +00:00
|
|
|
|
vector-th-unbox = doJailbreak super.vector-th-unbox;
|
2020-10-16 20:37:09 +00:00
|
|
|
|
|
2023-08-08 20:45:56 +00:00
|
|
|
|
ormolu = self.ormolu_0_5_2_0.override {
|
|
|
|
|
Cabal-syntax = self.Cabal-syntax_3_8_1_0;
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-21 23:23:30 +00:00
|
|
|
|
stylish-haskell = doJailbreak super.stylish-haskell_0_14_4_0;
|
2023-08-08 20:45:56 +00:00
|
|
|
|
|
2022-02-18 13:50:04 +00:00
|
|
|
|
doctest = dontCheck super.doctest;
|
2024-01-06 17:23:25 +00:00
|
|
|
|
|
|
|
|
|
haskell-language-server = throw "haskell-language-server has dropped support for ghc 9.0 in version 2.4.0.0, please use a newer ghc version or an older nixpkgs version";
|
2022-12-13 00:02:01 +00:00
|
|
|
|
|
2023-02-18 17:27:23 +00:00
|
|
|
|
# Needs to use ghc-lib due to incompatible GHC
|
2024-06-04 12:51:22 +00:00
|
|
|
|
ghc-tags = doDistribute (addBuildDepend self.ghc-lib self.ghc-tags_1_5);
|
2023-02-18 17:27:23 +00:00
|
|
|
|
|
2024-06-04 12:49:56 +00:00
|
|
|
|
# ghc-lib >= 9.6 and friends no longer build with GHC 9.0
|
|
|
|
|
ghc-lib-parser = doDistribute self.ghc-lib-parser_9_2_8_20230729;
|
|
|
|
|
ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_2_1_1;
|
|
|
|
|
ghc-lib = doDistribute self.ghc-lib_9_2_8_20230729;
|
|
|
|
|
|
2022-02-26 09:07:37 +00:00
|
|
|
|
# Test suite sometimes segfaults with GHC 9.0.1 and 9.0.2
|
|
|
|
|
# https://github.com/ekmett/reflection/issues/51
|
|
|
|
|
# https://gitlab.haskell.org/ghc/ghc/-/issues/21141
|
|
|
|
|
reflection = dontCheck super.reflection;
|
|
|
|
|
|
2021-06-11 22:43:21 +00:00
|
|
|
|
# Disable tests pending resolution of
|
|
|
|
|
# https://github.com/Soostone/retry/issues/71
|
|
|
|
|
retry = dontCheck super.retry;
|
|
|
|
|
|
2022-12-24 16:46:42 +00:00
|
|
|
|
ghc-api-compat = unmarkBroken super.ghc-api-compat;
|
|
|
|
|
|
2021-09-17 08:54:44 +00:00
|
|
|
|
# 2021-09-18: cabal2nix does not detect the need for ghc-api-compat.
|
2021-10-26 10:20:34 +00:00
|
|
|
|
hiedb = overrideCabal (old: {
|
2021-09-17 08:54:44 +00:00
|
|
|
|
libraryHaskellDepends = old.libraryHaskellDepends ++ [self.ghc-api-compat];
|
2021-10-26 10:20:34 +00:00
|
|
|
|
}) super.hiedb;
|
2021-09-17 08:54:44 +00:00
|
|
|
|
|
2021-12-05 13:02:30 +00:00
|
|
|
|
# https://github.com/lspitzner/butcher/issues/7
|
|
|
|
|
butcher = doJailbreak super.butcher;
|
2021-12-24 20:12:56 +00:00
|
|
|
|
|
|
|
|
|
# We use a GHC patch to support the fix for https://github.com/fpco/inline-c/issues/127
|
|
|
|
|
# which means that the upstream cabal file isn't allowed to add the flag.
|
|
|
|
|
inline-c-cpp =
|
|
|
|
|
(if isDarwin then appendConfigureFlags ["--ghc-option=-fcompact-unwind"] else x: x)
|
|
|
|
|
super.inline-c-cpp;
|
2022-05-31 10:41:31 +00:00
|
|
|
|
|
2023-08-14 08:58:24 +00:00
|
|
|
|
# 2022-05-31: weeder 2.4.* requires GHC 9.2
|
2022-05-31 10:41:31 +00:00
|
|
|
|
weeder = doDistribute self.weeder_2_3_1;
|
2023-08-14 08:58:24 +00:00
|
|
|
|
# Unnecessarily strict upper bound on lens
|
|
|
|
|
weeder_2_3_1 = doJailbreak (super.weeder_2_3_1.override {
|
|
|
|
|
# weeder < 2.6 only supports algebraic-graphs < 0.7
|
|
|
|
|
# We no longer have matching test deps for algebraic-graphs 0.6.1 in the set
|
|
|
|
|
algebraic-graphs = dontCheck self.algebraic-graphs_0_6_1;
|
|
|
|
|
});
|
2022-10-11 15:16:49 +00:00
|
|
|
|
|
|
|
|
|
# Restrictive upper bound on base and containers
|
|
|
|
|
sv2v = doJailbreak super.sv2v;
|
2022-12-13 00:02:01 +00:00
|
|
|
|
|
|
|
|
|
# Later versions only support GHC >= 9.2
|
|
|
|
|
ghc-exactprint = self.ghc-exactprint_0_6_4;
|
2022-12-30 16:21:48 +00:00
|
|
|
|
|
2022-12-30 17:04:51 +00:00
|
|
|
|
retrie = dontCheck self.retrie_1_1_0_0;
|
2022-12-30 16:21:48 +00:00
|
|
|
|
|
2022-12-13 00:02:01 +00:00
|
|
|
|
apply-refact = self.apply-refact_0_9_3_0;
|
2022-12-28 13:10:41 +00:00
|
|
|
|
|
|
|
|
|
# Needs OneTuple for ghc < 9.2
|
|
|
|
|
binary-orphans = addBuildDepends [ self.OneTuple ] super.binary-orphans;
|
2023-07-25 11:01:20 +00:00
|
|
|
|
|
|
|
|
|
# Requires GHC < 9.4
|
|
|
|
|
ghc-source-gen = doDistribute (unmarkBroken super.ghc-source-gen);
|
2023-11-17 23:31:27 +00:00
|
|
|
|
|
|
|
|
|
hspec-megaparsec = super.hspec-megaparsec_2_2_0;
|
2023-12-09 14:40:30 +00:00
|
|
|
|
|
|
|
|
|
# No instance for (Show B.Builder) arising from a use of ‘print’
|
|
|
|
|
http-types = dontCheck super.http-types;
|
2024-01-08 11:18:14 +00:00
|
|
|
|
|
2024-01-11 07:50:56 +00:00
|
|
|
|
# Packages which need compat library for GHC < 9.6
|
|
|
|
|
inherit
|
|
|
|
|
(lib.mapAttrs
|
|
|
|
|
(_: addBuildDepends [ self.foldable1-classes-compat ])
|
|
|
|
|
super)
|
|
|
|
|
indexed-traversable
|
|
|
|
|
these
|
|
|
|
|
;
|
2024-01-13 14:22:52 +00:00
|
|
|
|
base-compat-batteries = addBuildDepends [
|
|
|
|
|
self.foldable1-classes-compat
|
|
|
|
|
self.OneTuple
|
|
|
|
|
] super.base-compat-batteries;
|
2024-01-13 14:19:31 +00:00
|
|
|
|
OneTuple = addBuildDepends [
|
|
|
|
|
self.foldable1-classes-compat
|
|
|
|
|
self.base-orphans
|
|
|
|
|
] super.OneTuple;
|
2020-09-30 08:50:24 +00:00
|
|
|
|
}
|