mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
641fc0e683
This is the first step towards dropping Stackage support. We keep LTS 6.x around because I don't want to downgrade our default compiler to GHC 7.x, but once LTS 7.x comes out we'll switch our main package set to that and drop Nightly. More details are at: http://permalink.gmane.org/gmane.linux.distributions.nixos/20505 Closes https://github.com/NixOS/nixpkgs/issues/14897. Also relevant: - https://github.com/NixOS/nixpkgs/issues/16130 - https://github.com/commercialhaskell/stack/issues/2259
87 lines
2.5 KiB
Nix
87 lines
2.5 KiB
Nix
{ pkgs }:
|
|
|
|
with import ./lib.nix { inherit pkgs; };
|
|
|
|
self: super: {
|
|
|
|
# Suitable LLVM version.
|
|
llvmPackages = pkgs.llvmPackages_34;
|
|
|
|
# Disable GHC 7.2.x core libraries.
|
|
array = null;
|
|
base = null;
|
|
binary = null;
|
|
bin-package-db = null;
|
|
bytestring = null;
|
|
Cabal = null;
|
|
containers = null;
|
|
directory = null;
|
|
extensible-exceptions = null;
|
|
ffi = null;
|
|
filepath = null;
|
|
ghc-prim = null;
|
|
haskell2010 = null;
|
|
haskell98 = null;
|
|
hoopl = null;
|
|
hpc = null;
|
|
integer-gmp = null;
|
|
old-locale = null;
|
|
old-time = null;
|
|
pretty = null;
|
|
process = null;
|
|
rts = null;
|
|
template-haskell = null;
|
|
time = null;
|
|
unix = null;
|
|
|
|
# These packages are core libraries in GHC 7.10.x, but not here.
|
|
deepseq = self.deepseq_1_3_0_1;
|
|
haskeline = self.haskeline_0_7_2_1;
|
|
terminfo = self.terminfo_0_4_0_1;
|
|
transformers = self.transformers_0_4_3_0;
|
|
xhtml = self.xhtml_3000_2_1;
|
|
|
|
# https://github.com/haskell/cabal/issues/2322
|
|
Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_4_1; process = self.process_1_2_3_0; };
|
|
|
|
# Newer versions don't compile.
|
|
Cabal_1_18_1_7 = dontJailbreak super.Cabal_1_18_1_7;
|
|
|
|
# https://github.com/tibbe/hashable/issues/85
|
|
hashable = dontCheck super.hashable;
|
|
|
|
# https://github.com/peti/jailbreak-cabal/issues/9
|
|
jailbreak-cabal = super.jailbreak-cabal.override {
|
|
Cabal = dontJailbreak (self.Cabal_1_20_0_4.override { deepseq = dontJailbreak self.deepseq_1_3_0_1; });
|
|
};
|
|
|
|
# Haddock chokes on the prologue from the cabal file.
|
|
ChasingBottoms = dontHaddock super.ChasingBottoms;
|
|
|
|
# The old containers version won't compile against newer versions of deepseq.
|
|
containers_0_4_2_1 = super.containers_0_4_2_1.override { deepseq = self.deepseq_1_3_0_1; };
|
|
|
|
# These packages need more recent versions of core libraries to compile.
|
|
happy = addBuildTools super.happy [self.containers_0_4_2_1 self.deepseq_1_3_0_1];
|
|
|
|
# Setup: Can't find transitive deps for haddock
|
|
doctest = dontHaddock super.doctest;
|
|
|
|
# Needs hashable on pre 7.10.x compilers.
|
|
nats_1 = addBuildDepend super.nats_1 self.hashable;
|
|
nats = addBuildDepend super.nats self.hashable;
|
|
|
|
# Newer versions require bytestring >=0.10.
|
|
tar = super.tar_0_4_1_0;
|
|
|
|
# Needs void on pre 7.10.x compilers.
|
|
conduit = addBuildDepend super.conduit self.void;
|
|
|
|
# Needs tagged on pre 7.6.x compilers.
|
|
reflection = addBuildDepend super.reflection self.tagged;
|
|
|
|
# Needs nats on pre 7.6.x compilers.
|
|
semigroups = addBuildDepend super.semigroups self.nats;
|
|
|
|
}
|