haskell-ng: fix old Cabal builds

This commit is contained in:
Peter Simons
2015-01-11 20:56:21 +01:00
parent 78d8c67fa3
commit 921bb64a6d
2 changed files with 27 additions and 0 deletions
@@ -5,6 +5,8 @@ with import ./lib.nix { inherit pkgs; };
self: super: {
# Some packages need a non-core version of Cabal.
Cabal_1_18_1_6 = doJailbreak (dontCheck super.Cabal_1_18_1_6);
Cabal_1_20_0_3 = doJailbreak (dontCheck super.Cabal_1_20_0_3);
Cabal_1_22_0_0 = dontCheck super.Cabal_1_22_0_0;
cabal-install = dontCheck (super.cabal-install.override { Cabal = self.Cabal_1_22_0_0; });