summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-09-23 12:50:30 +0200
committerPeter Simons <simons@cryp.to>2018-09-24 21:19:35 +0200
commit873476c55a1907e6198d699f781815fd699838bf (patch)
treecfae5d297766ea313c9afcbe291b880774296eb1 /pkgs
parent9de1461f45af72e4e5e68033d8486b6f0e9d7d52 (diff)
downloadnixlib-873476c55a1907e6198d699f781815fd699838bf.tar
nixlib-873476c55a1907e6198d699f781815fd699838bf.tar.gz
nixlib-873476c55a1907e6198d699f781815fd699838bf.tar.bz2
nixlib-873476c55a1907e6198d699f781815fd699838bf.tar.lz
nixlib-873476c55a1907e6198d699f781815fd699838bf.tar.xz
nixlib-873476c55a1907e6198d699f781815fd699838bf.tar.zst
nixlib-873476c55a1907e6198d699f781815fd699838bf.zip
haskell-hspec-core: use latest version when building with ghc 8.6.x
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix4
1 files 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;