2020-09-30 09:50:24 +01:00
|
|
|
|
{ pkgs, haskellLib }:
|
|
|
|
|
|
|
|
|
|
with haskellLib;
|
|
|
|
|
|
|
|
|
|
self: super: {
|
|
|
|
|
|
|
|
|
|
# This compiler version needs llvm 10.x.
|
2021-06-04 10:36:24 +01:00
|
|
|
|
llvmPackages = pkgs.lib.dontRecurseIntoAttrs pkgs.llvmPackages_10;
|
2020-09-30 09:50:24 +01: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;
|
|
|
|
|
terminfo = null;
|
|
|
|
|
text = null;
|
|
|
|
|
time = null;
|
|
|
|
|
transformers = null;
|
|
|
|
|
unix = null;
|
|
|
|
|
xhtml = null;
|
|
|
|
|
|
2021-05-19 16:17:02 +01:00
|
|
|
|
# cabal-install needs more recent versions of Cabal and base16-bytestring.
|
2021-03-19 19:57:01 +00:00
|
|
|
|
cabal-install = (doJailbreak super.cabal-install).overrideScope (self: super: {
|
2021-10-12 11:51:42 +01:00
|
|
|
|
Cabal = self.Cabal_3_6_2_0;
|
2021-03-19 19:57:01 +00:00
|
|
|
|
});
|
2020-10-16 21:37:09 +01:00
|
|
|
|
|
2020-10-22 10:14:15 +01:00
|
|
|
|
# Jailbreaks & Version Updates
|
|
|
|
|
async = doJailbreak super.async;
|
|
|
|
|
ChasingBottoms = markBrokenVersion "1.3.1.9" super.ChasingBottoms;
|
2021-01-02 18:37:11 +00:00
|
|
|
|
data-fix = doJailbreak super.data-fix;
|
2020-10-16 21:37:09 +01:00
|
|
|
|
dec = doJailbreak super.dec;
|
|
|
|
|
ed25519 = doJailbreak super.ed25519;
|
2021-02-18 19:15:47 +00:00
|
|
|
|
hackage-security = doJailbreak super.hackage-security;
|
2020-10-22 10:14:15 +01:00
|
|
|
|
hashable = overrideCabal (doJailbreak (dontCheck super.hashable)) (drv: { postPatch = "sed -i -e 's,integer-gmp .*<1.1,integer-gmp < 2,' hashable.cabal"; });
|
|
|
|
|
hashable-time = doJailbreak super.hashable-time;
|
2021-02-18 19:15:47 +00:00
|
|
|
|
HTTP = overrideCabal (doJailbreak super.HTTP) (drv: { postPatch = "sed -i -e 's,! Socket,!Socket,' Network/TCP.hs"; });
|
2020-10-16 21:37:09 +01:00
|
|
|
|
integer-logarithms = overrideCabal (doJailbreak super.integer-logarithms) (drv: { postPatch = "sed -i -e 's,integer-gmp <1.1,integer-gmp < 2,' integer-logarithms.cabal"; });
|
2020-10-22 10:14:15 +01:00
|
|
|
|
lukko = doJailbreak super.lukko;
|
2020-10-16 21:37:09 +01:00
|
|
|
|
parallel = doJailbreak super.parallel;
|
2021-01-02 18:37:11 +00:00
|
|
|
|
primitive = doJailbreak (dontCheck super.primitive);
|
2020-10-16 21:37:09 +01:00
|
|
|
|
regex-posix = doJailbreak super.regex-posix;
|
2020-10-22 10:14:15 +01:00
|
|
|
|
resolv = doJailbreak super.resolv;
|
2020-10-16 21:37:09 +01:00
|
|
|
|
singleton-bool = doJailbreak super.singleton-bool;
|
2020-10-22 10:14:15 +01:00
|
|
|
|
split = doJailbreak super.split;
|
2020-10-16 21:37:09 +01:00
|
|
|
|
tar = doJailbreak super.tar;
|
2020-10-22 10:14:15 +01:00
|
|
|
|
time-compat = doJailbreak super.time-compat;
|
|
|
|
|
vector = doJailbreak (dontCheck super.vector);
|
2021-01-02 18:37:11 +00:00
|
|
|
|
vector-binary-instances = doJailbreak super.vector-binary-instances;
|
2021-01-02 18:40:16 +00:00
|
|
|
|
vector-th-unbox = doJailbreak super.vector-th-unbox;
|
2020-10-16 21:37:09 +01:00
|
|
|
|
zlib = doJailbreak super.zlib;
|
2021-10-13 12:46:30 +01:00
|
|
|
|
weeder = self.weeder_2_3_0;
|
|
|
|
|
generic-lens-core = self.generic-lens-core_2_2_0_0;
|
|
|
|
|
generic-lens = self.generic-lens_2_2_0_0;
|
2021-10-19 10:15:47 +01:00
|
|
|
|
th-desugar = self.th-desugar_1_12;
|
2021-10-19 10:16:00 +01:00
|
|
|
|
autoapply = self.autoapply_0_4_1_1;
|
2021-10-13 12:46:30 +01:00
|
|
|
|
|
|
|
|
|
# Doesn't allow Dhall 1.39.*
|
|
|
|
|
weeder_2_3_0 = super.weeder_2_3_0.override {
|
|
|
|
|
dhall = self.dhall_1_40_1;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Upstream also disables test for GHC 9: https://github.com/kcsongor/generic-lens/pull/130
|
|
|
|
|
generic-lens_2_2_0_0 = dontCheck super.generic-lens_2_2_0_0;
|
2020-10-16 21:37:09 +01:00
|
|
|
|
|
|
|
|
|
# Apply patches from head.hackage.
|
2020-10-22 10:14:15 +01:00
|
|
|
|
alex = appendPatch (dontCheck super.alex) (pkgs.fetchpatch {
|
2021-04-24 16:22:44 +01:00
|
|
|
|
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/fe192e12b88b09499d4aff0e562713e820544bd6/patches/alex-3.2.6.patch";
|
|
|
|
|
sha256 = "1rzs764a0nhx002v4fadbys98s6qblw4kx4g46galzjf5f7n2dn4";
|
2020-10-22 10:14:15 +01:00
|
|
|
|
});
|
2021-03-04 09:55:03 +00:00
|
|
|
|
doctest = dontCheck (doJailbreak super.doctest_0_18_1);
|
2020-10-16 21:37:09 +01:00
|
|
|
|
language-haskell-extract = appendPatch (doJailbreak super.language-haskell-extract) (pkgs.fetchpatch {
|
|
|
|
|
url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/master/patches/language-haskell-extract-0.2.4.patch";
|
|
|
|
|
sha256 = "0rgzrq0513nlc1vw7nw4km4bcwn4ivxcgi33jly4a7n3c1r32v1f";
|
|
|
|
|
});
|
|
|
|
|
|
2020-10-22 10:14:15 +01:00
|
|
|
|
# The test suite depends on ChasingBottoms, which is broken with ghc-9.0.x.
|
|
|
|
|
unordered-containers = dontCheck super.unordered-containers;
|
|
|
|
|
|
2021-03-12 19:35:11 +00:00
|
|
|
|
# The test suite seems pretty broken.
|
|
|
|
|
base64-bytestring = dontCheck super.base64-bytestring;
|
|
|
|
|
|
2021-05-05 14:25:24 +01:00
|
|
|
|
# 5 introduced support for GHC 9.0.x, but hasn't landed in stackage yet
|
|
|
|
|
lens = super.lens_5_0_1;
|
|
|
|
|
|
2021-06-10 14:33:30 +01:00
|
|
|
|
# 0.16.0 introduced support for GHC 9.0.x, stackage has 0.15.0
|
|
|
|
|
memory = super.memory_0_16_0;
|
|
|
|
|
|
2021-06-10 14:35:50 +01:00
|
|
|
|
# GHC 9.0.x doesn't like `import Spec (main)` in Main.hs
|
|
|
|
|
# https://github.com/snoyberg/mono-traversable/issues/192
|
|
|
|
|
mono-traversable = dontCheck super.mono-traversable;
|
|
|
|
|
|
2021-06-11 23:43:21 +01:00
|
|
|
|
# Disable tests pending resolution of
|
|
|
|
|
# https://github.com/Soostone/retry/issues/71
|
|
|
|
|
retry = dontCheck super.retry;
|
|
|
|
|
|
2021-09-17 09:54:44 +01:00
|
|
|
|
# Hlint needs >= 3.3.4 for ghc 9 support.
|
|
|
|
|
hlint = super.hlint_3_3_4;
|
2021-09-07 14:48:08 +01:00
|
|
|
|
|
2021-09-17 09:54:44 +01:00
|
|
|
|
# 2021-09-18: ghc-api-compat and ghc-lib-* need >= 9.0.x versions for hls and hlint
|
2021-09-07 14:48:08 +01:00
|
|
|
|
ghc-api-compat = doDistribute super.ghc-api-compat_9_0_1;
|
2021-09-17 09:54:44 +01:00
|
|
|
|
ghc-lib-parser = self.ghc-lib-parser_9_0_1_20210324;
|
|
|
|
|
ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_0_0_4;
|
|
|
|
|
ghc-lib = self.ghc-lib_9_0_1_20210324;
|
|
|
|
|
|
|
|
|
|
# 2021-09-18: Need semialign >= 1.2 for correct bounds
|
2021-11-05 07:30:12 +00:00
|
|
|
|
semialign = super.semialign_1_2_0_1;
|
2021-09-17 09:54:44 +01:00
|
|
|
|
|
|
|
|
|
# Will probably be needed for brittany support
|
|
|
|
|
# https://github.com/lspitzner/czipwith/pull/2
|
|
|
|
|
#czipwith = appendPatch super.czipwith
|
|
|
|
|
# (pkgs.fetchpatch {
|
|
|
|
|
# url = "https://github.com/lspitzner/czipwith/commit/b6245884ae83e00dd2b5261762549b37390179f8.patch";
|
|
|
|
|
# sha256 = "08rpppdldsdwzb09fmn0j55l23pwyls2dyzziw3yjc1cm0j5vic5";
|
|
|
|
|
# });
|
|
|
|
|
|
|
|
|
|
# 2021-09-18: https://github.com/mokus0/th-extras/pull/8
|
|
|
|
|
# Release is missing, but asked for in the above PR.
|
|
|
|
|
th-extras = overrideCabal super.th-extras (old: {
|
|
|
|
|
version = assert old.version == "0.0.0.4"; "unstable-2021-09-18";
|
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
|
owner = "mokus0";
|
|
|
|
|
repo = "th-extras";
|
|
|
|
|
rev = "0d050b24ec5ef37c825b6f28ebd46787191e2a2d";
|
|
|
|
|
sha256 = "045f36yagrigrggvyb96zqmw8y42qjsllhhx2h20q25sk5h44xsd";
|
|
|
|
|
};
|
|
|
|
|
libraryHaskellDepends = old.libraryHaskellDepends ++ [self.th-abstraction];
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
# 2021-09-18: GHC 9 compat release is missing
|
|
|
|
|
# Issue: https://github.com/obsidiansystems/dependent-sum/issues/65
|
|
|
|
|
dependent-sum-template = dontCheck (appendPatch super.dependent-sum-template
|
|
|
|
|
(pkgs.fetchpatch {
|
|
|
|
|
url = "https://github.com/obsidiansystems/dependent-sum/commit/8cf4c7fbc3bfa2be475a17bb7c94a1e1e9a830b5.patch";
|
|
|
|
|
sha256 = "02wyy0ciicq2x8lw4xxz3x5i4a550mxfidhm2ihh60ni6am498ff";
|
|
|
|
|
stripLen = 2;
|
|
|
|
|
extraPrefix = "";
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
# 2021-09-18: cabal2nix does not detect the need for ghc-api-compat.
|
|
|
|
|
hiedb = overrideCabal super.hiedb (old: {
|
|
|
|
|
libraryHaskellDepends = old.libraryHaskellDepends ++ [self.ghc-api-compat];
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
# 2021-09-18: Need path >= 0.9.0 for ghc 9 compat
|
|
|
|
|
path = self.path_0_9_0;
|
|
|
|
|
# 2021-09-18: Need ormolu >= 0.3.0.0 for ghc 9 compat
|
2021-10-15 13:27:09 +01:00
|
|
|
|
ormolu = doDistribute self.ormolu_0_3_1_0;
|
2021-09-17 09:54:44 +01:00
|
|
|
|
# 2021-09-18: https://github.com/haskell/haskell-language-server/issues/2206
|
|
|
|
|
# Restrictive upper bound on ormolu
|
|
|
|
|
hls-ormolu-plugin = doJailbreak super.hls-ormolu-plugin;
|
|
|
|
|
|
|
|
|
|
# 2021-09-18: The following plugins don‘t work yet on ghc9.
|
|
|
|
|
haskell-language-server = appendConfigureFlags (super.haskell-language-server.override {
|
|
|
|
|
hls-tactics-plugin = null; # No upstream support, generic-lens-core fail
|
|
|
|
|
hls-splice-plugin = null; # No upstream support in hls 1.4.0, should be fixed in 1.5
|
|
|
|
|
hls-refine-imports-plugin = null; # same issue es splice-plugin
|
|
|
|
|
hls-class-plugin = null; # No upstream support
|
|
|
|
|
|
|
|
|
|
hls-fourmolu-plugin = null; # No upstream support, needs new fourmolu release
|
|
|
|
|
hls-stylish-haskell-plugin = null; # No upstream support
|
|
|
|
|
hls-brittany-plugin = null; # No upstream support, needs new brittany release
|
|
|
|
|
}) [
|
|
|
|
|
"-f-tactic"
|
|
|
|
|
"-f-splice"
|
|
|
|
|
"-f-refineimports"
|
|
|
|
|
"-f-class"
|
|
|
|
|
|
|
|
|
|
"-f-fourmolu"
|
|
|
|
|
"-f-brittany"
|
|
|
|
|
"-f-stylishhaskell"
|
|
|
|
|
];
|
2020-09-30 09:50:24 +01:00
|
|
|
|
}
|