summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-07-07 12:24:06 +0200
committerPeter Simons <simons@cryp.to>2017-07-13 08:44:18 +0200
commit2180d2c1180b04b14877cccad841fdb06941255a (patch)
treebad49210c291a3ef33b37e251a6912462c35384c /pkgs/development
parent26762f1e1e94288b27d695e42d4bc76c0bb071b7 (diff)
downloadnixlib-2180d2c1180b04b14877cccad841fdb06941255a.tar
nixlib-2180d2c1180b04b14877cccad841fdb06941255a.tar.gz
nixlib-2180d2c1180b04b14877cccad841fdb06941255a.tar.bz2
nixlib-2180d2c1180b04b14877cccad841fdb06941255a.tar.lz
nixlib-2180d2c1180b04b14877cccad841fdb06941255a.tar.xz
nixlib-2180d2c1180b04b14877cccad841fdb06941255a.tar.zst
nixlib-2180d2c1180b04b14877cccad841fdb06941255a.zip
haskell-jailbreak-cabal: use stable version from ghc-8.0.x in ghc-8.2.x package set
The version compiled with Cabal 2.x breaks many packages, like doctest and
hashable. This needs further investigation.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
index 4b848478fa9f..90d007229966 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
@@ -39,8 +39,8 @@ self: super: {
   # 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; };
+  # jailbreak-cabal doesn't seem to work right with the native Cabal version.
+  jailbreak-cabal = pkgs.haskellPackages.jailbreak-cabal;
 
   # https://github.com/bmillwood/applicative-quoters/issues/6
   applicative-quoters = appendPatch super.applicative-quoters (pkgs.fetchpatch {