summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-05-21 13:30:55 +0200
committerGitHub <noreply@github.com>2018-05-21 13:30:55 +0200
commit5f6c0dd00a4f140829928d1900fca9d4469319c2 (patch)
treeaca01673c49fa20f9d81c1094544729e1478cf79
parent193dedff8d8199c38ae2f365845c69671565e758 (diff)
parent1f348e41a4960e00bc2b511411c3f7884d6e00d1 (diff)
downloadnixlib-5f6c0dd00a4f140829928d1900fca9d4469319c2.tar
nixlib-5f6c0dd00a4f140829928d1900fca9d4469319c2.tar.gz
nixlib-5f6c0dd00a4f140829928d1900fca9d4469319c2.tar.bz2
nixlib-5f6c0dd00a4f140829928d1900fca9d4469319c2.tar.lz
nixlib-5f6c0dd00a4f140829928d1900fca9d4469319c2.tar.xz
nixlib-5f6c0dd00a4f140829928d1900fca9d4469319c2.tar.zst
nixlib-5f6c0dd00a4f140829928d1900fca9d4469319c2.zip
Merge pull request #40824 from ElvishJerricco/dont-check-enclosed-exceptions
Dont test enclosed exceptions
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
index 011f307e8a81..83d97c64b48b 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
@@ -408,6 +408,9 @@ self: super: {
     jailbreak       = true;
   });
 
+  # https://github.com/jcristovao/enclosed-exceptions/issues/12
+  enclosed-exceptions = dontCheck super.enclosed-exceptions;
+
   # Older versions don't compile.
   base-compat = self.base-compat_0_10_1;
   brick = self.brick_0_37;