2017-08-01 17:44:08 +01:00
|
|
|
{ pkgs, haskellLib }:
|
2016-01-13 20:03:55 +00:00
|
|
|
|
2017-08-01 17:44:08 +01:00
|
|
|
with haskellLib;
|
2016-01-13 20:03:55 +00:00
|
|
|
|
|
|
|
self: super: {
|
2016-01-16 16:40:19 +00:00
|
|
|
|
|
|
|
# Suitable LLVM version.
|
2017-12-25 09:36:57 +00:00
|
|
|
llvmPackages = pkgs.llvmPackages_37;
|
2016-01-16 16:40:19 +00:00
|
|
|
|
2016-01-13 20:03:55 +00:00
|
|
|
# Disable GHC 8.0.x core libraries.
|
|
|
|
array = null;
|
|
|
|
base = null;
|
|
|
|
binary = null;
|
|
|
|
bytestring = null;
|
|
|
|
Cabal = null;
|
|
|
|
containers = null;
|
|
|
|
deepseq = null;
|
|
|
|
directory = null;
|
|
|
|
filepath = null;
|
|
|
|
ghc-boot = null;
|
2016-05-27 17:49:02 +01:00
|
|
|
ghc-boot-th = null;
|
2018-08-15 14:53:20 +01:00
|
|
|
ghc-compact = null;
|
2016-01-13 20:03:55 +00:00
|
|
|
ghc-prim = null;
|
|
|
|
ghci = null;
|
|
|
|
haskeline = null;
|
|
|
|
hoopl = null;
|
|
|
|
hpc = null;
|
|
|
|
integer-gmp = null;
|
|
|
|
pretty = null;
|
|
|
|
process = null;
|
|
|
|
rts = null;
|
|
|
|
template-haskell = null;
|
|
|
|
terminfo = null;
|
|
|
|
time = null;
|
|
|
|
transformers = null;
|
|
|
|
unix = null;
|
|
|
|
xhtml = null;
|
2016-01-13 22:06:53 +00:00
|
|
|
|
2018-07-10 00:23:50 +01:00
|
|
|
# These are now core libraries in GHC 8.4.x.
|
|
|
|
mtl = self.mtl_2_2_2;
|
|
|
|
parsec = self.parsec_3_1_13_0;
|
2018-09-22 14:49:12 +01:00
|
|
|
stm = self.stm_2_5_0_0;
|
2018-09-23 11:46:57 +01:00
|
|
|
text = self.text_1_2_3_1;
|
2018-07-10 00:23:50 +01:00
|
|
|
|
2016-08-04 16:38:13 +01:00
|
|
|
# https://github.com/bmillwood/applicative-quoters/issues/6
|
|
|
|
applicative-quoters = appendPatch super.applicative-quoters (pkgs.fetchpatch {
|
|
|
|
url = "https://patch-diff.githubusercontent.com/raw/bmillwood/applicative-quoters/pull/7.patch";
|
|
|
|
sha256 = "026vv2k3ks73jngwifszv8l59clg88pcdr4mz0wr0gamivkfa1zy";
|
|
|
|
});
|
|
|
|
|
2017-09-10 09:45:33 +01:00
|
|
|
# Requires ghc 8.2
|
|
|
|
ghc-proofs = dontDistribute super.ghc-proofs;
|
|
|
|
|
2017-04-28 13:40:06 +01:00
|
|
|
# https://github.com/thoughtbot/yesod-auth-oauth2/pull/77
|
|
|
|
yesod-auth-oauth2 = doJailbreak super.yesod-auth-oauth2;
|
|
|
|
|
2017-06-28 17:54:27 +01:00
|
|
|
# https://github.com/nominolo/ghc-syb/issues/20
|
|
|
|
ghc-syb-utils = dontCheck super.ghc-syb-utils;
|
2017-04-28 13:40:06 +01:00
|
|
|
|
2017-06-26 17:01:56 +01:00
|
|
|
# Newer versions require ghc>=8.2
|
|
|
|
apply-refact = super.apply-refact_0_3_0_1;
|
2017-07-27 11:54:18 +01:00
|
|
|
|
|
|
|
# This builds needs the latest Cabal version.
|
2017-12-04 12:53:43 +00:00
|
|
|
cabal2nix = super.cabal2nix.overrideScope (self: super: { Cabal = self.Cabal_2_0_1_1; });
|
2017-07-27 11:54:18 +01:00
|
|
|
|
2017-12-11 13:34:26 +00:00
|
|
|
# Add appropriate Cabal library to build this code.
|
|
|
|
stack = addSetupDepend super.stack self.Cabal_2_0_1_1;
|
|
|
|
|
2018-01-01 11:57:13 +00:00
|
|
|
# inline-c > 0.5.6.0 requires template-haskell >= 2.12
|
|
|
|
inline-c = super.inline-c_0_5_6_1;
|
|
|
|
inline-c-cpp = super.inline-c-cpp_0_1_0_0;
|
2018-01-18 21:39:15 +00:00
|
|
|
|
2018-03-31 18:59:49 +01:00
|
|
|
# test dep hedgehog pulls in concurrent-output, which does not build
|
|
|
|
# due to processing version mismatch
|
|
|
|
either = dontCheck super.either;
|
|
|
|
|
|
|
|
# test dep tasty has a version mismatch
|
|
|
|
indents = dontCheck super.indents;
|
|
|
|
|
2018-01-18 21:39:15 +00:00
|
|
|
# Newer versions require GHC 8.2.
|
2018-03-26 06:01:58 +01:00
|
|
|
haddock-library = self.haddock-library_1_4_3;
|
2018-01-18 21:39:15 +00:00
|
|
|
haddock-api = self.haddock-api_2_17_4;
|
|
|
|
haddock = self.haddock_2_17_5;
|
2018-09-17 02:50:53 +01:00
|
|
|
|
|
|
|
# GHC 8.0 doesn't have semigroups included by default
|
|
|
|
ListLike = addBuildDepend super.ListLike self.semigroups;
|
|
|
|
|
2018-10-19 11:04:12 +01:00
|
|
|
# Add missing build depedency for this compiler.
|
|
|
|
base-compat-batteries = addBuildDepend super.base-compat-batteries self.bifunctors;
|
|
|
|
|
2016-01-13 20:03:55 +00:00
|
|
|
}
|