2016-01-13 20:03:55 +00:00
|
|
|
{ pkgs }:
|
|
|
|
|
|
|
|
with import ./lib.nix { inherit pkgs; };
|
|
|
|
|
|
|
|
self: super: {
|
2016-01-16 16:40:19 +00:00
|
|
|
|
|
|
|
# Suitable LLVM version.
|
|
|
|
llvmPackages = pkgs.llvmPackages_35;
|
|
|
|
|
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;
|
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
|
|
|
|
2016-01-31 21:28:05 +00:00
|
|
|
# cabal-install can use the native Cabal library.
|
|
|
|
cabal-install = super.cabal-install.override { Cabal = null; };
|
|
|
|
|
2016-01-16 16:40:19 +00:00
|
|
|
# jailbreak-cabal can use the native Cabal library.
|
2016-01-26 23:17:48 +00:00
|
|
|
jailbreak-cabal = super.jailbreak-cabal.override { Cabal = null; };
|
2016-01-16 16:40:19 +00: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-01-12 15:34:52 +00:00
|
|
|
## GHC 8.0.2
|
|
|
|
|
|
|
|
# http://hub.darcs.net/dolio/vector-algorithms/issue/9#comment-20170112T145715
|
|
|
|
vector-algorithms = dontCheck super.vector-algorithms;
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
2016-01-13 20:03:55 +00:00
|
|
|
}
|