about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorManuel Bärenz <m.baerenz@sonnen.de>2023-08-09 15:15:20 +0200
committersternenseemann <sternenseemann@systemli.org>2023-08-09 21:08:17 +0200
commit39fb5c360ae7b03b8df07d1c10a4187436dcb3ee (patch)
tree4e53e8f3735590eb416473f1cb69493881a7da3d /pkgs/development/haskell-modules
parent843863271db4e140821d675ac8e5ed0e46d50a68 (diff)
haskellPackages.monad-bayes: Jailbreak and override
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index ea691888c26c6..0d19fffd5a415 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -207,8 +207,10 @@ self: super: {
   # https://github.com/hdgarrood/aeson-better-errors/issues/23
   aeson-better-errors = doJailbreak super.aeson-better-errors;
 
-  # 2023-06-28: Test error: https://hydra.nixos.org/build/225559546
-  monad-bayes = dontCheck super.monad-bayes;
+  # 2023-08-09: Jailbreak because of vector < 0.13
+  monad-bayes = doJailbreak (super.monad-bayes.override {
+    hspec = self.hspec_2_11_4;
+  });
 
   # Disable tests failing on odd floating point numbers generated by QuickCheck 2.14.3
   # https://github.com/haskell/statistics/issues/205