2019-04-29 16:51:19 +01:00
|
|
|
|
{ pkgs, haskellLib }:
|
|
|
|
|
|
|
|
|
|
with haskellLib;
|
|
|
|
|
|
2021-12-24 20:12:56 +00:00
|
|
|
|
let
|
|
|
|
|
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
|
|
|
|
in
|
|
|
|
|
|
2019-04-29 16:51:19 +01:00
|
|
|
|
self: super: {
|
|
|
|
|
|
2021-11-23 15:11:37 +00:00
|
|
|
|
llvmPackages = pkgs.lib.dontRecurseIntoAttrs self.ghc.llvmPackages;
|
2019-04-29 16:51:19 +01:00
|
|
|
|
|
|
|
|
|
# Disable GHC 8.8.x core libraries.
|
|
|
|
|
array = null;
|
|
|
|
|
base = null;
|
|
|
|
|
binary = null;
|
|
|
|
|
bytestring = null;
|
|
|
|
|
Cabal = null;
|
|
|
|
|
containers = null;
|
|
|
|
|
deepseq = null;
|
|
|
|
|
directory = null;
|
|
|
|
|
filepath = 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;
|
2022-04-29 14:27:02 +01: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
|
|
|
|
|
xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1;
|
2019-04-29 16:51:19 +01:00
|
|
|
|
|
2020-04-24 20:17:30 +01:00
|
|
|
|
# GHC 8.8.x can build haddock version 2.23.*
|
|
|
|
|
haddock = self.haddock_2_23_1;
|
|
|
|
|
haddock-api = self.haddock-api_2_23_1;
|
|
|
|
|
|
2021-03-19 19:51:56 +00:00
|
|
|
|
# This build needs a newer version of Cabal.
|
2020-10-30 13:53:45 +00:00
|
|
|
|
cabal2spec = super.cabal2spec.override { Cabal = self.Cabal_3_2_1_0; };
|
2021-03-19 19:51:56 +00:00
|
|
|
|
|
|
|
|
|
# cabal-install needs more recent versions of Cabal and random, but an older
|
|
|
|
|
# version of base16-bytestring.
|
|
|
|
|
cabal-install = super.cabal-install.overrideScope (self: super: {
|
2022-03-08 12:45:33 +00:00
|
|
|
|
Cabal = self.Cabal_3_6_3_0;
|
2021-03-19 19:51:56 +00:00
|
|
|
|
});
|
2020-04-03 20:03:40 +01:00
|
|
|
|
|
2019-04-30 10:32:16 +01:00
|
|
|
|
# Ignore overly restrictive upper version bounds.
|
2019-09-24 16:59:43 +01:00
|
|
|
|
aeson-diff = doJailbreak super.aeson-diff;
|
2019-05-09 15:52:02 +01:00
|
|
|
|
async = doJailbreak super.async;
|
|
|
|
|
ChasingBottoms = doJailbreak super.ChasingBottoms;
|
2019-10-06 10:39:18 +01:00
|
|
|
|
chell = doJailbreak super.chell;
|
2019-05-09 15:52:02 +01:00
|
|
|
|
Diff = dontCheck super.Diff;
|
2019-04-30 10:32:16 +01:00
|
|
|
|
doctest = doJailbreak super.doctest;
|
2019-05-03 20:38:27 +01:00
|
|
|
|
hashable = doJailbreak super.hashable;
|
2019-05-09 16:31:20 +01:00
|
|
|
|
hashable-time = doJailbreak super.hashable-time;
|
2019-08-28 16:25:27 +01:00
|
|
|
|
hledger-lib = doJailbreak super.hledger-lib; # base >=4.8 && <4.13, easytest >=0.2.1 && <0.3
|
2019-05-09 16:40:20 +01:00
|
|
|
|
integer-logarithms = doJailbreak super.integer-logarithms;
|
2019-05-09 16:29:25 +01:00
|
|
|
|
lucid = doJailbreak super.lucid;
|
2019-05-11 10:09:09 +01:00
|
|
|
|
parallel = doJailbreak super.parallel;
|
2019-05-12 09:00:08 +01:00
|
|
|
|
setlocale = doJailbreak super.setlocale;
|
2019-05-09 15:52:02 +01:00
|
|
|
|
split = doJailbreak super.split;
|
2019-09-24 16:59:43 +01:00
|
|
|
|
system-fileio = doJailbreak super.system-fileio;
|
2019-05-09 15:38:24 +01:00
|
|
|
|
tasty-expected-failure = doJailbreak super.tasty-expected-failure;
|
2019-09-24 16:59:43 +01:00
|
|
|
|
tasty-hedgehog = doJailbreak super.tasty-hedgehog;
|
2019-05-09 15:52:02 +01:00
|
|
|
|
test-framework = doJailbreak super.test-framework;
|
2019-09-24 16:59:43 +01:00
|
|
|
|
th-expand-syns = doJailbreak super.th-expand-syns;
|
2019-10-13 14:06:05 +01:00
|
|
|
|
# TODO: remove when upstream accepts https://github.com/snapframework/io-streams-haproxy/pull/17
|
|
|
|
|
io-streams-haproxy = doJailbreak super.io-streams-haproxy; # base >=4.5 && <4.13
|
2019-10-21 15:31:02 +01:00
|
|
|
|
snap-server = doJailbreak super.snap-server;
|
2019-12-05 13:42:59 +00:00
|
|
|
|
exact-pi = doJailbreak super.exact-pi;
|
2020-02-21 17:37:28 +00:00
|
|
|
|
time-compat = doJailbreak super.time-compat;
|
2020-11-20 22:13:33 +00:00
|
|
|
|
http-media = unmarkBroken (doJailbreak super.http-media);
|
|
|
|
|
servant-server = unmarkBroken (doJailbreak super.servant-server);
|
2019-08-29 19:01:37 +01:00
|
|
|
|
foundation = dontCheck super.foundation;
|
2019-09-16 16:49:39 +01:00
|
|
|
|
vault = dontHaddock super.vault;
|
2019-09-16 21:11:40 +01:00
|
|
|
|
|
2019-10-21 15:31:02 +01:00
|
|
|
|
# https://github.com/snapframework/snap-core/issues/288
|
2021-10-26 11:20:34 +01:00
|
|
|
|
snap-core = overrideCabal (drv: { prePatch = "substituteInPlace src/Snap/Internal/Core.hs --replace 'fail = Fail.fail' ''"; }) super.snap-core;
|
2019-09-18 16:13:27 +01:00
|
|
|
|
|
2019-09-18 16:13:27 +01:00
|
|
|
|
# Upstream ships a broken Setup.hs file.
|
2021-10-26 11:20:34 +01:00
|
|
|
|
csv = overrideCabal (drv: { prePatch = "rm Setup.hs"; }) super.csv;
|
2019-09-18 16:13:27 +01:00
|
|
|
|
|
2020-02-27 12:55:11 +00:00
|
|
|
|
# https://github.com/kowainik/relude/issues/241
|
|
|
|
|
relude = dontCheck super.relude;
|
|
|
|
|
|
2020-04-10 20:27:47 +01:00
|
|
|
|
# The current version 2.14.2 does not compile with ghc-8.8.x or newer because
|
|
|
|
|
# of issues with Cabal 3.x.
|
|
|
|
|
darcs = dontDistribute super.darcs;
|
|
|
|
|
|
2020-05-25 21:00:57 +01:00
|
|
|
|
# cabal-fmt requires Cabal3
|
2020-10-30 13:53:45 +00:00
|
|
|
|
cabal-fmt = super.cabal-fmt.override { Cabal = self.Cabal_3_2_1_0; };
|
2020-05-25 21:00:57 +01:00
|
|
|
|
|
2020-09-04 19:27:58 +01:00
|
|
|
|
# liquidhaskell does not support ghc version 8.8.x.
|
|
|
|
|
liquid = markBroken super.liquid;
|
|
|
|
|
liquid-base = markBroken super.liquid-base;
|
|
|
|
|
liquid-bytestring = markBroken super.liquid-bytestring;
|
|
|
|
|
liquid-containers = markBroken super.liquid-containers;
|
|
|
|
|
liquid-ghc-prim = markBroken super.liquid-ghc-prim;
|
|
|
|
|
liquid-parallel = markBroken super.liquid-parallel;
|
|
|
|
|
liquid-platform = markBroken super.liquid-platform;
|
|
|
|
|
liquid-prelude = markBroken super.liquid-prelude;
|
|
|
|
|
liquid-vector = markBroken super.liquid-vector;
|
|
|
|
|
liquidhaskell = markBroken super.liquidhaskell;
|
|
|
|
|
|
2020-11-15 02:37:32 +00:00
|
|
|
|
# This became a core library in ghc 8.10., so we don‘t have an "exception" attribute anymore.
|
2022-05-12 17:08:30 +01:00
|
|
|
|
exceptions = super.exceptions_0_10_5;
|
2020-11-17 00:20:11 +00:00
|
|
|
|
|
|
|
|
|
# ghc versions which don‘t match the ghc-lib-parser-ex version need the
|
|
|
|
|
# additional dependency to compile successfully.
|
2021-10-26 11:20:34 +01:00
|
|
|
|
ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser super.ghc-lib-parser-ex;
|
2021-02-05 21:37:50 +00:00
|
|
|
|
|
2022-02-20 23:10:35 +00:00
|
|
|
|
ormolu = super.ormolu_0_2_0_0;
|
2021-02-05 21:37:50 +00:00
|
|
|
|
|
2021-02-12 10:46:17 +00:00
|
|
|
|
# vector 0.12.2 indroduced doctest checks that don‘t work on older compilers
|
|
|
|
|
vector = dontCheck super.vector;
|
2021-06-10 13:52:55 +01:00
|
|
|
|
|
2021-09-07 14:48:08 +01:00
|
|
|
|
ghc-api-compat = doDistribute super.ghc-api-compat_8_6;
|
2021-11-19 22:50:07 +00:00
|
|
|
|
|
|
|
|
|
mime-string = disableOptimization super.mime-string;
|
2022-02-20 23:10:35 +00:00
|
|
|
|
|
2022-04-14 12:00:43 +01:00
|
|
|
|
# Older compilers need the latest ghc-lib to build this package.
|
|
|
|
|
hls-hlint-plugin = addBuildDepend self.ghc-lib (overrideCabal (drv: {
|
|
|
|
|
# Workaround for https://github.com/haskell/haskell-language-server/issues/2728
|
|
|
|
|
postPatch = ''
|
|
|
|
|
sed -i 's/(GHC.RealSrcSpan x,/(GHC.RealSrcSpan x Nothing,/' src/Ide/Plugin/Hlint.hs
|
|
|
|
|
'';
|
|
|
|
|
})
|
|
|
|
|
super.hls-hlint-plugin);
|
|
|
|
|
|
2022-02-20 23:10:35 +00:00
|
|
|
|
haskell-language-server = appendConfigureFlags [
|
|
|
|
|
"-f-stylishhaskell"
|
|
|
|
|
"-f-brittany"
|
|
|
|
|
]
|
2022-04-14 12:00:43 +01:00
|
|
|
|
super.haskell-language-server;
|
|
|
|
|
|
|
|
|
|
# has a restrictive lower bound on Cabal
|
|
|
|
|
fourmolu = doJailbreak super.fourmolu;
|
2022-02-25 20:15:57 +00:00
|
|
|
|
|
|
|
|
|
# OneTuple needs hashable instead of ghc-prim for GHC < 9
|
|
|
|
|
OneTuple = super.OneTuple.override {
|
|
|
|
|
ghc-prim = self.hashable;
|
|
|
|
|
};
|
2022-03-25 12:21:16 +00:00
|
|
|
|
|
|
|
|
|
# Temporarily disabled blaze-textual for GHC >= 9.0 causing hackage2nix ignoring it
|
|
|
|
|
# https://github.com/paul-rouse/mysql-simple/blob/872604f87044ff6d1a240d9819a16c2bdf4ed8f5/Database/MySQL/Internal/Blaze.hs#L4-L10
|
|
|
|
|
mysql-simple = addBuildDepends [
|
|
|
|
|
self.blaze-textual
|
|
|
|
|
] super.mysql-simple;
|
2021-12-24 20:12:56 +00:00
|
|
|
|
|
|
|
|
|
# https://github.com/fpco/inline-c/issues/127 (recommend to upgrade to Nixpkgs GHC >=9.0)
|
|
|
|
|
inline-c-cpp = (if isDarwin then dontCheck else x: x) super.inline-c-cpp;
|
2022-04-26 18:22:01 +01:00
|
|
|
|
|
|
|
|
|
# Depends on OneTuple for GHC < 9.0
|
|
|
|
|
universe-base = addBuildDepends [ self.OneTuple ] super.universe-base;
|
2019-04-29 16:51:19 +01:00
|
|
|
|
}
|