2017-08-01 17:44:08 +01:00
|
|
|
{ pkgs, haskellLib }:
|
2017-06-15 17:22:29 +01:00
|
|
|
|
2017-08-01 17:44:08 +01:00
|
|
|
with haskellLib;
|
2017-06-15 17:22:29 +01:00
|
|
|
|
|
|
|
self: super: {
|
|
|
|
|
|
|
|
# Suitable LLVM version.
|
|
|
|
llvmPackages = pkgs.llvmPackages_39;
|
|
|
|
|
|
|
|
# Disable GHC 8.2.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-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;
|
|
|
|
|
|
|
|
# cabal-install can use the native Cabal library.
|
|
|
|
cabal-install = super.cabal-install.override { Cabal = null; };
|
|
|
|
|
2017-07-07 11:24:06 +01:00
|
|
|
# jailbreak-cabal doesn't seem to work right with the native Cabal version.
|
2017-07-26 18:41:39 +01:00
|
|
|
jailbreak-cabal = pkgs.haskell.packages.ghc802.jailbreak-cabal;
|
2017-06-15 17:22:29 +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";
|
|
|
|
});
|
|
|
|
|
|
|
|
## GHC > 8.0.2
|
|
|
|
|
|
|
|
# http://hub.darcs.net/dolio/vector-algorithms/issue/9#comment-20170112T145715
|
|
|
|
vector-algorithms = dontCheck super.vector-algorithms;
|
|
|
|
|
|
|
|
# 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-06-15 17:22:29 +01:00
|
|
|
|
2017-07-01 18:53:37 +01:00
|
|
|
# Work around overly restrictive constraints on the version of 'base'.
|
2017-07-07 11:07:15 +01:00
|
|
|
ChasingBottoms = doJailbreak super.ChasingBottoms;
|
2017-07-07 11:25:55 +01:00
|
|
|
hashable = doJailbreak super.hashable;
|
2017-07-01 18:53:37 +01:00
|
|
|
|
2017-06-15 17:22:29 +01:00
|
|
|
}
|