2019-04-29 16:51:19 +01:00
|
|
|
|
{ pkgs, haskellLib }:
|
|
|
|
|
|
|
|
|
|
with haskellLib;
|
|
|
|
|
|
|
|
|
|
self: super: {
|
|
|
|
|
|
|
|
|
|
# This compiler version needs llvm 7.x.
|
|
|
|
|
llvmPackages = pkgs.llvmPackages_7;
|
|
|
|
|
|
|
|
|
|
# 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;
|
|
|
|
|
xhtml = null;
|
|
|
|
|
|
2020-08-13 21:43:19 +01:00
|
|
|
|
# Hasura 1.3.1
|
|
|
|
|
# Because of ghc-heap-view, profiling needs to be disabled.
|
|
|
|
|
graphql-engine = overrideCabal (super.graphql-engine) (drv: {
|
|
|
|
|
# GHC 8.8.x needs a revert of https://github.com/hasura/graphql-engine/commit/a77bb0570f4210fb826985e17a84ddcc4c95d3ea
|
|
|
|
|
patches = [ ./patches/hasura-884-compat.patch ];
|
|
|
|
|
});
|
|
|
|
|
|
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;
|
|
|
|
|
|
2020-04-03 20:03:40 +01:00
|
|
|
|
# These builds need Cabal 3.2.x.
|
2020-10-30 13:53:45 +00:00
|
|
|
|
cabal2spec = super.cabal2spec.override { Cabal = self.Cabal_3_2_1_0; };
|
|
|
|
|
cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_2_1_0; });
|
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
|
|
|
|
|
snap-core = overrideCabal super.snap-core (drv: { prePatch = "substituteInPlace src/Snap/Internal/Core.hs --replace 'fail = Fail.fail' ''"; });
|
2019-09-18 16:13:27 +01:00
|
|
|
|
|
2019-09-18 16:13:27 +01:00
|
|
|
|
# Upstream ships a broken Setup.hs file.
|
|
|
|
|
csv = overrideCabal super.csv (drv: { prePatch = "rm Setup.hs"; });
|
|
|
|
|
|
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-04-25 17:22:55 +01:00
|
|
|
|
# The package needs the latest Cabal version.
|
2020-10-30 13:53:45 +00:00
|
|
|
|
cabal-install-parsers = super.cabal-install-parsers.overrideScope (self: super: { Cabal = self.Cabal_3_2_1_0; });
|
2020-04-25 17:22:55 +01:00
|
|
|
|
|
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.
|
|
|
|
|
exceptions = super.exceptions_0_10_4;
|
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.
|
|
|
|
|
ghc-lib-parser-ex = addBuildDepend super.ghc-lib-parser-ex self.ghc-lib-parser;
|
2019-04-29 16:51:19 +01:00
|
|
|
|
}
|