haskell-configuration-ghc-7.9.x: steal a working jailbreak-cabal binary from the 7.8.4 package set to alleviate the effects of https://github.com/peti/jailbreak-cabal/issues/3

This commit is contained in:
Peter Simons 2015-01-09 19:17:59 +01:00
parent 1e659694c5
commit 96ae5d58bf

View file

@ -30,6 +30,10 @@ self: super: {
unix = null;
xhtml = null;
# We cannot build jailbreak without Cabal 1.20.x, and we cannot build
# Cabal 1.20.x without jailbreak. Go figure. Let's use a sledgehammer.
jailbreak-cabal = pkgs.haskellngPackages.jailbreak-cabal;
# haddock: internal error: expectJust getPackageDetails
mkDerivation = drv: super.mkDerivation (drv // { noHaddock = true; });