about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-09-09 12:10:28 +0200
committerPeter Simons <simons@cryp.to>2013-09-09 15:07:35 +0200
commit0e7783c608b52a57712902c46f8aca9a72271bfc (patch)
tree45a03d0d6a4f30036b29bc2608a871f8ad122da4
parenteac934c83affc067d46e0f9c6640210ebead1df4 (diff)
downloadnixlib-0e7783c608b52a57712902c46f8aca9a72271bfc.tar
nixlib-0e7783c608b52a57712902c46f8aca9a72271bfc.tar.gz
nixlib-0e7783c608b52a57712902c46f8aca9a72271bfc.tar.bz2
nixlib-0e7783c608b52a57712902c46f8aca9a72271bfc.tar.lz
nixlib-0e7783c608b52a57712902c46f8aca9a72271bfc.tar.xz
nixlib-0e7783c608b52a57712902c46f8aca9a72271bfc.tar.zst
nixlib-0e7783c608b52a57712902c46f8aca9a72271bfc.zip
haskell-exceptions: re-generate with cabal2nix
-rw-r--r--pkgs/development/libraries/haskell/exceptions/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/haskell/exceptions/default.nix b/pkgs/development/libraries/haskell/exceptions/default.nix
index ad940556ec56..a15c2cc1e48f 100644
--- a/pkgs/development/libraries/haskell/exceptions/default.nix
+++ b/pkgs/development/libraries/haskell/exceptions/default.nix
@@ -10,6 +10,7 @@ cabal.mkDerivation (self: {
   testDepends = [
     mtl QuickCheck testFramework testFrameworkQuickcheck2 transformers
   ];
+  doCheck = false;
   meta = {
     homepage = "http://github.com/ekmett/exceptions/";
     description = "Extensible optionally-pure exceptions";
@@ -17,5 +18,4 @@ cabal.mkDerivation (self: {
     platforms = self.ghc.meta.platforms;
     maintainers = [ self.stdenv.lib.maintainers.ocharles ];
   };
-  doCheck = false; # https://github.com/ekmett/exceptions/issues/18
 })