2019-04-29 15:51:19 +00:00
|
|
|
|
{ pkgs, haskellLib }:
|
|
|
|
|
|
|
|
|
|
with haskellLib;
|
|
|
|
|
|
2021-12-24 20:12:56 +00:00
|
|
|
|
let
|
|
|
|
|
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
|
|
|
|
in
|
|
|
|
|
|
2019-04-29 15:51:19 +00:00
|
|
|
|
self: super: {
|
|
|
|
|
|
2021-11-23 15:11:37 +00:00
|
|
|
|
llvmPackages = pkgs.lib.dontRecurseIntoAttrs self.ghc.llvmPackages;
|
2019-04-29 15:51:19 +00: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;
|
2022-07-25 21:42:29 +00:00
|
|
|
|
# GHC only builds terminfo if it is a native compiler
|
|
|
|
|
terminfo = if pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform then null else self.terminfo_0_4_1_5;
|
2019-04-29 15:51:19 +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
|
|
|
|
|
xhtml = if self.ghc.hasHaddock or true then null else self.xhtml_3000_2_2_1;
|
2019-04-29 15:51:19 +00:00
|
|
|
|
|
2020-04-24 19:17:30 +00: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
|
|
|
|
|
2022-08-20 10:20:39 +00:00
|
|
|
|
# cabal-install needs most recent versions of Cabal and Cabal-syntax
|
2021-03-19 19:51:56 +00:00
|
|
|
|
cabal-install = super.cabal-install.overrideScope (self: super: {
|
2022-08-20 10:20:39 +00:00
|
|
|
|
Cabal = self.Cabal_3_8_1_0;
|
|
|
|
|
Cabal-syntax = self.Cabal-syntax_3_8_1_0;
|
|
|
|
|
process = self.process_1_6_15_0;
|
2021-03-19 19:51:56 +00:00
|
|
|
|
});
|
2022-08-27 08:02:59 +00:00
|
|
|
|
cabal-install-solver = super.cabal-install-solver.overrideScope (self: super: {
|
|
|
|
|
Cabal = self.Cabal_3_8_1_0;
|
|
|
|
|
Cabal-syntax = self.Cabal-syntax_3_8_1_0;
|
|
|
|
|
process = self.process_1_6_15_0;
|
|
|
|
|
});
|
2020-04-03 19:03:40 +00:00
|
|
|
|
|
2019-04-30 09:32:16 +00:00
|
|
|
|
# Ignore overly restrictive upper version bounds.
|
2019-09-24 15:59:43 +00:00
|
|
|
|
aeson-diff = doJailbreak super.aeson-diff;
|
2019-05-09 14:52:02 +00:00
|
|
|
|
async = doJailbreak super.async;
|
|
|
|
|
ChasingBottoms = doJailbreak super.ChasingBottoms;
|
2019-10-06 09:39:18 +00:00
|
|
|
|
chell = doJailbreak super.chell;
|
2019-05-09 14:52:02 +00:00
|
|
|
|
Diff = dontCheck super.Diff;
|
2019-04-30 09:32:16 +00:00
|
|
|
|
doctest = doJailbreak super.doctest;
|
2019-05-03 19:38:27 +00:00
|
|
|
|
hashable = doJailbreak super.hashable;
|
2019-05-09 15:31:20 +00:00
|
|
|
|
hashable-time = doJailbreak super.hashable-time;
|
2019-08-28 15:25:27 +00:00
|
|
|
|
hledger-lib = doJailbreak super.hledger-lib; # base >=4.8 && <4.13, easytest >=0.2.1 && <0.3
|
2019-05-09 15:40:20 +00:00
|
|
|
|
integer-logarithms = doJailbreak super.integer-logarithms;
|
2019-05-09 15:29:25 +00:00
|
|
|
|
lucid = doJailbreak super.lucid;
|
2019-05-11 09:09:09 +00:00
|
|
|
|
parallel = doJailbreak super.parallel;
|
2019-05-12 08:00:08 +00:00
|
|
|
|
setlocale = doJailbreak super.setlocale;
|
2019-05-09 14:52:02 +00:00
|
|
|
|
split = doJailbreak super.split;
|
2019-09-24 15:59:43 +00:00
|
|
|
|
system-fileio = doJailbreak super.system-fileio;
|
2019-05-09 14:38:24 +00:00
|
|
|
|
tasty-expected-failure = doJailbreak super.tasty-expected-failure;
|
2019-09-24 15:59:43 +00:00
|
|
|
|
tasty-hedgehog = doJailbreak super.tasty-hedgehog;
|
2019-05-09 14:52:02 +00:00
|
|
|
|
test-framework = doJailbreak super.test-framework;
|
2019-09-24 15:59:43 +00:00
|
|
|
|
th-expand-syns = doJailbreak super.th-expand-syns;
|
2019-10-13 13:06:05 +00: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 14:31:02 +00: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);
|
2022-08-30 12:21:06 +00:00
|
|
|
|
basement = doDistribute self.basement_0_0_14;
|
|
|
|
|
foundation = doDistribute (dontCheck self.foundation_0_0_28);
|
2019-09-16 15:49:39 +00:00
|
|
|
|
vault = dontHaddock super.vault;
|
2019-09-16 20:11:40 +00:00
|
|
|
|
|
2019-10-21 14:31:02 +00:00
|
|
|
|
# https://github.com/snapframework/snap-core/issues/288
|
2021-10-26 10:20:34 +00:00
|
|
|
|
snap-core = overrideCabal (drv: { prePatch = "substituteInPlace src/Snap/Internal/Core.hs --replace 'fail = Fail.fail' ''"; }) super.snap-core;
|
2019-09-18 15:13:27 +00:00
|
|
|
|
|
2019-09-18 15:13:27 +00:00
|
|
|
|
# Upstream ships a broken Setup.hs file.
|
2021-10-26 10:20:34 +00:00
|
|
|
|
csv = overrideCabal (drv: { prePatch = "rm Setup.hs"; }) super.csv;
|
2019-09-18 15:13:27 +00:00
|
|
|
|
|
2020-02-27 12:55:11 +00:00
|
|
|
|
# https://github.com/kowainik/relude/issues/241
|
|
|
|
|
relude = dontCheck super.relude;
|
|
|
|
|
|
2020-04-10 19:27:47 +00: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 20:00:57 +00: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 20:00:57 +00:00
|
|
|
|
|
2020-09-04 18:27:58 +00: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 16:08:30 +00: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 10:20:34 +00: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 12:52:55 +00:00
|
|
|
|
|
2021-09-07 13:48:08 +00: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 11:00:43 +00: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 11:00:43 +00: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 17:22:01 +00:00
|
|
|
|
|
|
|
|
|
# Depends on OneTuple for GHC < 9.0
|
|
|
|
|
universe-base = addBuildDepends [ self.OneTuple ] super.universe-base;
|
2022-07-26 09:15:03 +00:00
|
|
|
|
|
|
|
|
|
# doctest-parallel dependency requires newer Cabal
|
|
|
|
|
regex-tdfa = dontCheck super.regex-tdfa;
|
2022-09-17 11:13:01 +00:00
|
|
|
|
|
|
|
|
|
# Unnecessarily strict lower bound on base
|
|
|
|
|
# https://github.com/mrkkrp/megaparsec/pull/485#issuecomment-1250051823
|
|
|
|
|
megaparsec = doJailbreak super.megaparsec;
|
2019-04-29 15:51:19 +00:00
|
|
|
|
}
|