From 873476c55a1907e6198d699f781815fd699838bf Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 23 Sep 2018 12:50:30 +0200 Subject: [PATCH] haskell-hspec-core: use latest version when building with ghc 8.6.x --- pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix index e4c4c0b19064..9ab8e7b9557b 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix @@ -58,8 +58,8 @@ self: super: { test-framework = doJailbreak super.test-framework; # containers >=0.1 && <0.6 # Older versions don't work with ghc 8.6.1: - hspec-core = self.hspec-core_2_5_6; - hspec-core_2_5_6 = super.hspec-core_2_5_6.overrideScope (self: super: { QuickCheck = self.QuickCheck_2_12_4; }); + hspec-core = self.hspec-core_2_5_7; + hspec-core_2_5_7 = super.hspec-core_2_5_7.overrideScope (self: super: { QuickCheck = self.QuickCheck_2_12_4; }); hspec-meta = self.hspec-meta_2_5_6; optparse-applicative = doJailbreak super.optparse-applicative; unordered-containers = dontCheck super.unordered-containers;