From a07ae64cee3d3d1c0623d3543f4b5f5a26fc27c1 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 13 Mar 2013 13:36:56 +0100 Subject: [PATCH] haskell-punycode: disable the test suite The test suite runs for 20+ minutes on my EeePC. That seems a little excessive. --- pkgs/development/libraries/haskell/punycode/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/haskell/punycode/default.nix b/pkgs/development/libraries/haskell/punycode/default.nix index ade7685be6e..a4ad760d8ff 100644 --- a/pkgs/development/libraries/haskell/punycode/default.nix +++ b/pkgs/development/libraries/haskell/punycode/default.nix @@ -6,6 +6,7 @@ cabal.mkDerivation (self: { sha256 = "192jgfixnpxdj6jiiz92kx5bi6ij3c389b76q9f4vyfmvcajj1sr"; buildDepends = [ cereal mtl text ]; testDepends = [ cereal encoding HUnit mtl QuickCheck text ]; + doCheck = false; meta = { homepage = "https://github.com/litherum/punycode"; description = "Encode unicode strings to ascii forms according to RFC 3492";