From ffabca8f92207455a3cd6cfdb64314779253b0f6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 25 Jan 2016 12:14:40 +0100 Subject: [PATCH] haskell-hspec-core: disable test suite when building with GHC 8.0.x. --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index cc5034008bb..d6603ce9c23 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -51,4 +51,7 @@ self: super: { # https://github.com/hspec/HUnit/issues/7 HUnit = dontCheck super.HUnit; + # https://github.com/hspec/hspec/issues/253 + hspec-core = dontCheck super.hspec-core; + }