From 6f93e0f749614ce8a02c0b8b09ef63208a8ec9ad Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 29 Jan 2018 13:50:03 +0100 Subject: [PATCH] fix GHC 8.4.x builds of hspec and test-framework --- pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix index 03e42463fee6..49c8ac0d0050 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix @@ -41,4 +41,9 @@ self: super: { transformers = null; unix = null; xhtml = null; + + # GHC 8.4.x needs newer versions than LTS-10.x offers by default. + hspec = dontCheck super.hspec_2_4_7; # test suite causes an infinite loop + test-framework = self.test-framework_0_8_2_0; + }