diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix index 8d1248e8322..ca122ef7232 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix @@ -69,6 +69,9 @@ self: super: { # bos/attoparsec#92 attoparsec = overrideCabal super.attoparsec (drv: { doCheck = false; }); + # test suite hangs silently for at least 10 minutes + split = overrideCabal super.split (drv: { doCheck = false; }); + # Test suite fails with some (seemingly harmless) error. # https://code.google.com/p/scrapyourboilerplate/issues/detail?id=24 syb = overrideCabal super.syb (drv: { doCheck = false; });