haskell: drop package sets for GHC 6.12.x, 7.0.x, 7.2.x, 7.4.x, and 7.6.x
These old package sets have been broken and unmaintained for a long time now.
This commit is contained in:
parent
e98e7fb329
commit
eb0da3e8af
@ -1,94 +0,0 @@
|
||||
{ pkgs, haskellLib }:
|
||||
|
||||
with haskellLib;
|
||||
|
||||
self: super: {
|
||||
|
||||
# LLVM is not supported on this GHC; use the latest one.
|
||||
inherit (pkgs) llvmPackages;
|
||||
|
||||
# Disable GHC 6.12.x core libraries.
|
||||
array = null;
|
||||
base = null;
|
||||
bin-package-db = null;
|
||||
bytestring = null;
|
||||
Cabal = null;
|
||||
containers = null;
|
||||
directory = null;
|
||||
dph-base = null;
|
||||
dph-par = null;
|
||||
dph-prim-interface = null;
|
||||
dph-prim-par = null;
|
||||
dph-prim-seq = null;
|
||||
dph-seq = null;
|
||||
extensible-exceptions = null;
|
||||
ffi = null;
|
||||
filepath = null;
|
||||
ghc-binary = null;
|
||||
ghc-prim = null;
|
||||
haskell98 = null;
|
||||
hpc = null;
|
||||
integer-gmp = null;
|
||||
old-locale = null;
|
||||
old-time = null;
|
||||
pretty = null;
|
||||
process = null;
|
||||
random = null;
|
||||
rts = null;
|
||||
syb = null;
|
||||
template-haskell = null;
|
||||
time = null;
|
||||
unix = null;
|
||||
|
||||
# These packages are core libraries in GHC 7.10.x, but not here.
|
||||
binary = self.binary_0_8_5_1;
|
||||
deepseq = self.deepseq_1_3_0_1;
|
||||
haskeline = self.haskeline_0_7_3_1;
|
||||
hoopl = self.hoopl_3_10_2_0;
|
||||
terminfo = self.terminfo_0_4_0_2;
|
||||
transformers = self.transformers_0_4_3_0;
|
||||
xhtml = self.xhtml_3000_2_1;
|
||||
|
||||
# Requires ghc 8.2
|
||||
ghc-proofs = dontDistribute super.ghc-proofs;
|
||||
|
||||
# We have no working cabal-install at the moment.
|
||||
cabal-install = markBroken super.cabal-install;
|
||||
|
||||
# https://github.com/tibbe/hashable/issues/85
|
||||
hashable = dontCheck super.hashable;
|
||||
|
||||
# Needs Cabal >= 1.18.x.
|
||||
jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_7; };
|
||||
|
||||
# Haddock chokes on the prologue from the cabal file.
|
||||
ChasingBottoms = dontHaddock super.ChasingBottoms;
|
||||
|
||||
# https://github.com/glguy/utf8-string/issues/9
|
||||
utf8-string = overrideCabal super.utf8-string (drv: {
|
||||
configureFlags = drv.configureFlags or [] ++ ["-f-bytestring-in-base" "--ghc-option=-XUndecidableInstances"];
|
||||
preConfigure = "sed -i -e 's|base >= .* < .*,|base,|' utf8-string.cabal";
|
||||
});
|
||||
|
||||
# https://github.com/haskell/HTTP/issues/80
|
||||
HTTP = doJailbreak super.HTTP;
|
||||
|
||||
# 6.12.3 doesn't support the latest version.
|
||||
primitive = self.primitive_0_5_1_0;
|
||||
parallel = self.parallel_3_2_0_3;
|
||||
vector = self.vector_0_10_9_3;
|
||||
|
||||
# These packages need more recent versions of core libraries to compile.
|
||||
happy = addBuildTools super.happy [self.Cabal_1_18_1_7 self.containers_0_4_2_1];
|
||||
network-uri = addBuildTool super.network-uri self.Cabal_1_18_1_7;
|
||||
stm = addBuildTool super.stm self.Cabal_1_18_1_7;
|
||||
split = super.split_0_1_4_3;
|
||||
|
||||
# Needs hashable on pre 7.10.x compilers.
|
||||
nats_1 = addBuildDepend super.nats_1 self.hashable;
|
||||
nats = addBuildDepend super.nats self.hashable;
|
||||
|
||||
# Needs void on pre 7.10.x compilers.
|
||||
conduit = addBuildDepend super.conduit self.void;
|
||||
|
||||
}
|
@ -1,85 +0,0 @@
|
||||
{ pkgs, haskellLib }:
|
||||
|
||||
with haskellLib;
|
||||
|
||||
self: super: {
|
||||
|
||||
# Suitable LLVM version.
|
||||
llvmPackages = pkgs.llvmPackages_34;
|
||||
|
||||
# Disable GHC 7.0.x core libraries.
|
||||
array = null;
|
||||
base = null;
|
||||
bin-package-db = null;
|
||||
bytestring = null;
|
||||
Cabal = null;
|
||||
containers = null;
|
||||
directory = null;
|
||||
extensible-exceptions = null;
|
||||
ffi = null;
|
||||
filepath = null;
|
||||
ghc-binary = null;
|
||||
ghc-prim = null;
|
||||
haskell2010 = null;
|
||||
haskell98 = null;
|
||||
hpc = null;
|
||||
integer-gmp = null;
|
||||
old-locale = null;
|
||||
old-time = null;
|
||||
pretty = null;
|
||||
process = null;
|
||||
random = null;
|
||||
rts = null;
|
||||
template-haskell = null;
|
||||
time = null;
|
||||
unix = null;
|
||||
|
||||
# These packages are core libraries in GHC 7.10.x, but not here.
|
||||
binary = self.binary_0_7_6_1;
|
||||
deepseq = self.deepseq_1_3_0_1;
|
||||
haskeline = self.haskeline_0_7_3_1;
|
||||
hoopl = self.hoopl_3_10_2_0;
|
||||
terminfo = self.terminfo_0_4_0_2;
|
||||
transformers = self.transformers_0_4_3_0;
|
||||
xhtml = self.xhtml_3000_2_1;
|
||||
|
||||
# Requires ghc 8.2
|
||||
ghc-proofs = dontDistribute super.ghc-proofs;
|
||||
|
||||
# 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 = self.Cabal_1_20_0_4.override { deepseq = self.deepseq_1_3_0_1; };
|
||||
};
|
||||
|
||||
# Haddock chokes on the prologue from the cabal file.
|
||||
ChasingBottoms = dontHaddock super.ChasingBottoms;
|
||||
|
||||
# https://github.com/haskell/containers/issues/134
|
||||
containers_0_4_2_1 = doJailbreak super.containers_0_4_2_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;
|
||||
hsdns = dontHaddock super.hsdns;
|
||||
|
||||
# Newer versions require bytestring >=0.10.
|
||||
tar = super.tar_0_4_1_0;
|
||||
|
||||
# These builds need additional dependencies on old compilers.
|
||||
nats_1 = addBuildDepend super.nats_1 self.hashable;
|
||||
nats = addBuildDepend super.nats self.hashable;
|
||||
conduit = addBuildDepend super.conduit self.void;
|
||||
reflection = addBuildDepend super.reflection self.tagged;
|
||||
semigroups = addBuildDepend super.semigroups self.nats;
|
||||
text = addBuildDepend super.text self.bytestring-builder;
|
||||
|
||||
# Newer versions don't compile any longer.
|
||||
network_2_6_3_1 = dontCheck super.network_2_6_3_1;
|
||||
network = self.network_2_6_3_1;
|
||||
|
||||
}
|
@ -1,89 +0,0 @@
|
||||
{ pkgs, haskellLib }:
|
||||
|
||||
with haskellLib;
|
||||
|
||||
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_3_1;
|
||||
terminfo = self.terminfo_0_4_0_2;
|
||||
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_5_1; process = self.process_1_2_3_0; };
|
||||
|
||||
# Requires ghc 8.2
|
||||
ghc-proofs = dontDistribute super.ghc-proofs;
|
||||
|
||||
# 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 = self.Cabal_1_20_0_4.override { deepseq = 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;
|
||||
hsdns = dontHaddock super.hsdns;
|
||||
|
||||
# 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;
|
||||
|
||||
# These builds need additional dependencies on old compilers.
|
||||
conduit = addBuildDepend super.conduit self.void;
|
||||
reflection = addBuildDepend super.reflection self.tagged;
|
||||
semigroups = addBuildDepend super.semigroups self.nats;
|
||||
optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
|
||||
text = addBuildDepend super.text self.bytestring-builder;
|
||||
|
||||
# Newer versions don't compile any longer.
|
||||
network_2_6_3_1 = dontCheck super.network_2_6_3_1;
|
||||
network = self.network_2_6_3_1;
|
||||
|
||||
}
|
@ -1,117 +0,0 @@
|
||||
{ pkgs, haskellLib }:
|
||||
|
||||
with haskellLib;
|
||||
|
||||
self: super: {
|
||||
|
||||
# Suitable LLVM version.
|
||||
llvmPackages = pkgs.llvmPackages_34;
|
||||
|
||||
# Disable GHC 7.4.x core libraries.
|
||||
array = null;
|
||||
base = null;
|
||||
binary = null;
|
||||
bin-package-db = null;
|
||||
bytestring = null;
|
||||
Cabal = null;
|
||||
containers = null;
|
||||
deepseq = null;
|
||||
directory = null;
|
||||
extensible-exceptions = 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.
|
||||
haskeline = self.haskeline_0_7_3_1;
|
||||
terminfo = self.terminfo_0_4_0_2;
|
||||
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 = dontCheck self.binary_0_8_5_1; };
|
||||
|
||||
# Avoid inconsistent 'binary' versions from 'text' and 'Cabal'.
|
||||
cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_5_1; });
|
||||
|
||||
# Requires ghc 8.2
|
||||
ghc-proofs = dontDistribute super.ghc-proofs;
|
||||
|
||||
# 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 = self.Cabal_1_20_0_4; };
|
||||
|
||||
# Haddock chokes on the prologue from the cabal file.
|
||||
ChasingBottoms = dontHaddock super.ChasingBottoms;
|
||||
|
||||
# https://github.com/haskell/primitive/issues/16
|
||||
primitive = dontCheck super.primitive;
|
||||
|
||||
# https://github.com/tibbe/unordered-containers/issues/96
|
||||
unordered-containers = dontCheck super.unordered-containers;
|
||||
|
||||
# The test suite depends on time >=1.4.0.2.
|
||||
cookie = dontCheck super.cookie ;
|
||||
|
||||
# Work around bytestring >=0.10.2.0 requirement.
|
||||
streaming-commons = addBuildDepend super.streaming-commons self.bytestring-builder;
|
||||
|
||||
# Choose appropriate flags for our version of 'bytestring'.
|
||||
bytestring-builder = disableCabalFlag super.bytestring-builder "bytestring_has_builder";
|
||||
|
||||
# Newer versions require a more recent compiler.
|
||||
control-monad-free = super.control-monad-free_0_5_3;
|
||||
|
||||
# Needs hashable on pre 7.10.x compilers.
|
||||
nats_1 = addBuildDepend super.nats_1 self.hashable;
|
||||
nats = addBuildDepend super.nats self.hashable;
|
||||
|
||||
# Test suite won't compile.
|
||||
unix-time = dontCheck super.unix-time;
|
||||
|
||||
# The test suite depends on mockery, which pulls in logging-facade, which
|
||||
# doesn't compile with this older version of base:
|
||||
# https://github.com/sol/logging-facade/issues/14
|
||||
doctest = dontCheck super.doctest;
|
||||
|
||||
# Avoid depending on tasty-golden.
|
||||
monad-par = dontCheck super.monad-par;
|
||||
|
||||
# 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;
|
||||
|
||||
# These builds need additional dependencies on old compilers.
|
||||
semigroups = addBuildDepends super.semigroups (with self; [nats bytestring-builder tagged unordered-containers transformers]);
|
||||
QuickCheck = addBuildDepends super.QuickCheck (with self; [nats semigroups]);
|
||||
optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
|
||||
text = addBuildDepend super.text self.bytestring-builder;
|
||||
vector = addBuildDepend super.vector self.semigroups;
|
||||
|
||||
# Newer versions don't compile any longer.
|
||||
network_2_6_3_1 = dontCheck super.network_2_6_3_1;
|
||||
network = self.network_2_6_3_1;
|
||||
|
||||
# Haddock fails with an internal error.
|
||||
utf8-string = dontHaddock super.utf8-string;
|
||||
|
||||
}
|
@ -1,124 +0,0 @@
|
||||
{ pkgs, haskellLib }:
|
||||
|
||||
with haskellLib;
|
||||
|
||||
self: super: {
|
||||
|
||||
# Suitable LLVM version.
|
||||
llvmPackages = pkgs.llvmPackages_34;
|
||||
|
||||
# Disable GHC 7.6.x core libraries.
|
||||
array = null;
|
||||
base = null;
|
||||
binary = null;
|
||||
bin-package-db = null;
|
||||
bytestring = null;
|
||||
Cabal = null;
|
||||
containers = null;
|
||||
deepseq = null;
|
||||
directory = 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.
|
||||
haskeline = self.haskeline_0_7_3_1;
|
||||
terminfo = self.terminfo_0_4_0_2;
|
||||
transformers = self.transformers_0_4_3_0;
|
||||
xhtml = self.xhtml_3000_2_1;
|
||||
|
||||
# Avoid inconsistent 'binary' versions from 'text' and 'Cabal'.
|
||||
cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_5_1; });
|
||||
|
||||
# Requires ghc 8.2
|
||||
ghc-proofs = dontDistribute super.ghc-proofs;
|
||||
|
||||
# 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 = self.Cabal_1_20_0_4; };
|
||||
|
||||
# Haddock chokes on the prologue from the cabal file.
|
||||
ChasingBottoms = dontHaddock super.ChasingBottoms;
|
||||
|
||||
# Later versions require a newer version of bytestring than we have.
|
||||
aeson = self.aeson_0_7_0_6;
|
||||
|
||||
# The test suite depends on time >=1.4.0.2.
|
||||
cookie = dontCheck super.cookie;
|
||||
|
||||
# Work around bytestring >=0.10.2.0 requirement.
|
||||
streaming-commons = addBuildDepend super.streaming-commons self.bytestring-builder;
|
||||
|
||||
# Choose appropriate flags for our version of 'bytestring'.
|
||||
bytestring-builder = disableCabalFlag super.bytestring-builder "bytestring_has_builder";
|
||||
|
||||
# Tagged is not part of base in this environment.
|
||||
contravariant = addBuildDepend super.contravariant self.tagged;
|
||||
reflection = dontHaddock (addBuildDepend super.reflection self.tagged);
|
||||
|
||||
# The compat library is empty in the presence of mtl 2.2.x.
|
||||
mtl-compat = dontHaddock super.mtl-compat;
|
||||
|
||||
# Newer versions require a more recent compiler.
|
||||
control-monad-free = super.control-monad-free_0_5_3;
|
||||
|
||||
# Needs hashable on pre 7.10.x compilers.
|
||||
nats_1 = addBuildDepend super.nats_1 self.hashable;
|
||||
nats = addBuildDepend super.nats self.hashable;
|
||||
|
||||
# https://github.com/magthe/sandi/issues/7
|
||||
sandi = overrideCabal super.sandi (drv: {
|
||||
postPatch = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal";
|
||||
});
|
||||
|
||||
# These packages require additional build inputs on older compilers.
|
||||
blaze-builder = addBuildDepend super.blaze-builder super.bytestring-builder;
|
||||
text = addBuildDepend super.text self.bytestring-builder;
|
||||
|
||||
# available convertible package won't build with the available
|
||||
# bytestring and ghc-mod won't build without convertible
|
||||
convertible = markBroken super.convertible;
|
||||
ghc-mod = markBroken super.ghc-mod;
|
||||
|
||||
# Needs void on pre 7.10.x compilers.
|
||||
conduit = addBuildDepend super.conduit self.void;
|
||||
|
||||
# Needs additional inputs on old compilers.
|
||||
semigroups = addBuildDepends super.semigroups (with self; [bytestring-builder nats tagged unordered-containers transformers]);
|
||||
lens = addBuildDepends super.lens (with self; [doctest generic-deriving nats simple-reflect]);
|
||||
distributive = addBuildDepend (dontCheck super.distributive) self.semigroups;
|
||||
QuickCheck = addBuildDepend super.QuickCheck self.semigroups;
|
||||
void = addBuildDepends super.void (with self; [hashable semigroups]);
|
||||
optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
|
||||
vector = addBuildDepend super.vector self.semigroups;
|
||||
|
||||
# Need a newer version of Cabal to interpret their build instructions.
|
||||
cmdargs = addSetupDepend super.cmdargs self.Cabal_1_24_2_0;
|
||||
extra = addSetupDepend super.extra self.Cabal_1_24_2_0;
|
||||
hlint = addSetupDepend super.hlint self.Cabal_1_24_2_0;
|
||||
|
||||
# Haddock doesn't cope with the new markup.
|
||||
bifunctors = dontHaddock super.bifunctors;
|
||||
|
||||
# Breaks a dependency cycle between QuickCheck and semigroups
|
||||
unordered-containers = dontCheck super.unordered-containers;
|
||||
|
||||
# The test suite requires Cabal 1.24.x or later to compile.
|
||||
comonad = dontCheck super.comonad;
|
||||
semigroupoids = dontCheck super.semigroupoids;
|
||||
|
||||
}
|
@ -116,32 +116,6 @@ in rec {
|
||||
|
||||
packages = {
|
||||
|
||||
# Support for this compiler is broken, because it can't deal with directory-based package databases.
|
||||
# ghc6104 = callPackage ../development/haskell-modules { ghc = compiler.ghc6104; };
|
||||
ghc6123 = callPackage ../development/haskell-modules {
|
||||
ghc = compiler.ghc6123;
|
||||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-6.12.x.nix { };
|
||||
};
|
||||
ghc704 = callPackage ../development/haskell-modules {
|
||||
ghc = compiler.ghc704;
|
||||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.0.x.nix { };
|
||||
};
|
||||
ghc722 = callPackage ../development/haskell-modules {
|
||||
ghc = compiler.ghc722;
|
||||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.2.x.nix { };
|
||||
};
|
||||
ghc742 = callPackage ../development/haskell-modules {
|
||||
ghc = compiler.ghc742;
|
||||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.4.x.nix { };
|
||||
};
|
||||
ghc763 = callPackage ../development/haskell-modules {
|
||||
ghc = compiler.ghc763;
|
||||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.6.x.nix { };
|
||||
};
|
||||
ghc783 = callPackage ../development/haskell-modules {
|
||||
ghc = compiler.ghc783;
|
||||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.8.x.nix { };
|
||||
};
|
||||
ghc784 = callPackage ../development/haskell-modules {
|
||||
ghc = compiler.ghc784;
|
||||
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.8.x.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user