about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2023-11-10 18:44:08 +0100
committerRobert Hensing <robert@roberthensing.nl>2023-11-10 18:44:08 +0100
commit99a02beb04adad4c0cc99ff6ad9c806d5fa53145 (patch)
tree30cb8338243e81016b8d6858cd8d2bc9a3f8101f /pkgs/development/haskell-modules/configuration-common.nix
parent030de47bf7c338359b0bf078f231860aa9e9c584 (diff)
haskellPackages: Fixup hspec minor version in overrides
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index f8a986cb0d74c..8e45de074b9bb 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -59,7 +59,7 @@ self: super: {
           # just upgrade to an hspec version without the offending dependency.
           hspec-core = cself.hspec-core_2_11_7;
           hspec-discover = cself.hspec-discover_2_11_7;
-          hspec = cself.hspec_2_11_6;
+          hspec = cself.hspec_2_11_7;
 
           # hspec-discover and hspec-core depend on hspec-meta for testing which
           # we need to avoid since it depends on ghc as well. Since hspec*_2_11*
@@ -194,7 +194,7 @@ self: super: {
   # 2023-08-09: Jailbreak because of vector < 0.13
   # 2023-11-09: don't check because of https://github.com/tweag/monad-bayes/pull/326
   monad-bayes = dontCheck (doJailbreak (super.monad-bayes.override {
-    hspec = self.hspec_2_11_6;
+    hspec = self.hspec_2_11_7;
   }));
 
   # Disable tests failing on odd floating point numbers generated by QuickCheck 2.14.3
@@ -1671,7 +1671,7 @@ self: super: {
   servant-openapi3 = dontCheck super.servant-openapi3;
 
   # Give latest hspec correct dependency versions without overrideScope
-  hspec_2_11_6 = doDistribute (super.hspec_2_11_6.override {
+  hspec_2_11_7 = doDistribute (super.hspec_2_11_7.override {
     hspec-discover = self.hspec-discover_2_11_7;
     hspec-core = self.hspec-core_2_11_7;
   });