cabal-install: build with native Cabal library when compiling with GHC 8.0.x

Fixes https://github.com/NixOS/nixpkgs/issues/12726.
This commit is contained in:
Peter Simons 2016-01-31 22:28:05 +01:00
parent bb94b09f66
commit 9e06f6880c

View File

@ -34,6 +34,9 @@ self: super: {
unix = null;
xhtml = null;
# cabal-install can use the native Cabal library.
cabal-install = super.cabal-install.override { Cabal = null; };
# jailbreak-cabal can use the native Cabal library.
jailbreak-cabal = super.jailbreak-cabal.override { Cabal = null; };