configuration-ghc-7.10.x.nix: enable builds for cabal-install 1.24.x

This commit is contained in:
Peter Simons 2016-05-06 14:02:28 +02:00
parent c23fd4fbc9
commit d19e8ea429

View File

@ -36,6 +36,9 @@ self: super: {
# Our core version of Cabal is good enough for this build.
cabal-install = dontCheck (super.cabal-install.override { Cabal = null; });
# Enable latest version of cabal-install.
cabal-install_1_24_0_0 = (doDistribute (dontJailbreak (dontCheck (super.cabal-install_1_24_0_0)))).overrideScope (self: super: { Cabal = self.Cabal_1_24_0_0; });
# Jailbreaking is required for the test suite only (which we don't run).
Cabal_1_24_0_0 = dontJailbreak (dontCheck super.Cabal_1_24_0_0);
@ -187,4 +190,11 @@ self: super: {
# Trigger rebuild to mitigate broken packaes on Hydra.
amazonka-core = triggerRebuild super.amazonka-core 1;
# https://github.com/thoughtpolice/hs-ed25519/issues/13
ed25519 = dontCheck super.ed25519;
# https://github.com/well-typed/hackage-security/issues/157
# https://github.com/well-typed/hackage-security/issues/158
hackage-security = dontHaddock (dontCheck super.hackage-security);
}