From 0e7783c608b52a57712902c46f8aca9a72271bfc Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 9 Sep 2013 12:10:28 +0200 Subject: [PATCH] haskell-exceptions: re-generate with cabal2nix --- pkgs/development/libraries/haskell/exceptions/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/haskell/exceptions/default.nix b/pkgs/development/libraries/haskell/exceptions/default.nix index ad940556ec5..a15c2cc1e48 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 })