94 lines
3.0 KiB
Nix
94 lines
3.0 KiB
Nix
{ pkgs, haskellLib }:
|
|
|
|
with haskellLib;
|
|
|
|
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;
|
|
|
|
# Make sure we can still build Cabal 1.x.
|
|
Cabal_1_24_2_0 = overrideCabal super.Cabal_1_24_2_0 (drv: {
|
|
prePatch = "sed -i -e 's/process.*< 1.5,/process,/g' Cabal.cabal";
|
|
});
|
|
|
|
# cabal-install can use the native Cabal library.
|
|
cabal-install = super.cabal-install.override { Cabal = null; };
|
|
|
|
# jailbreak-cabal doesn't seem to work right with the native Cabal version.
|
|
jailbreak-cabal = pkgs.haskell.packages.ghc802.jailbreak-cabal;
|
|
|
|
# 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";
|
|
});
|
|
|
|
# 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;
|
|
|
|
# https://github.com/nominolo/ghc-syb/issues/20
|
|
ghc-syb-utils = dontCheck super.ghc-syb-utils;
|
|
|
|
# Work around overly restrictive constraints on the version of 'base'.
|
|
ChasingBottoms = doJailbreak super.ChasingBottoms;
|
|
hashable = doJailbreak super.hashable;
|
|
protolude = doJailbreak super.protolude;
|
|
quickcheck-instances = doJailbreak super.quickcheck-instances;
|
|
|
|
# https://github.com/aristidb/aws/issues/238
|
|
aws = doJailbreak super.aws;
|
|
|
|
# https://github.com/jgm/pandoc/issues/3876
|
|
pandoc = let fixSetup = pkgs.fetchpatch {
|
|
url = "https://github.com/jgm/pandoc/pull/3899.patch";
|
|
sha256 = "0lk9vs2l1wc1kr0y8fkdcarfi4sjd3dl81r52n39r25xx9kqawv7";
|
|
};
|
|
in overrideCabal super.pandoc (drv: {
|
|
editedCabalFile = null;
|
|
patches = drv.patches or [] ++ [fixSetup];
|
|
setupHaskellDepends = drv.setupHaskellDepends or [self.Cabal_1_24_2_0];
|
|
preCompileBuildDriver = "setupCompileFlags+=' -package=Cabal-1.24.2.0'";
|
|
});
|
|
|
|
# LTS-9 versions do not compile.
|
|
path = dontCheck super.path;
|
|
path-io = super.path-io_1_3_3;
|
|
trifecta = super.trifecta_1_7_1_1;
|
|
aeson-compat = dontCheck super.aeson-compat_0_3_7_1; # test suite needs QuickCheck 2.10.*
|
|
binary-orphans = dontCheck super.binary-orphans_0_1_8_0; # test suite needs QuickCheck 2.10.*
|
|
|
|
}
|