From 205058ee363e7dccc494887c7724d81b898b0cc2 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Tue, 22 Apr 2025 03:16:39 +0200 Subject: [PATCH] haskellPackages.wave: allow bytestring >= 0.12 --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 24b9e246404e..b16d1bd26562 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -3099,6 +3099,10 @@ self: super: assert super.crucible.version == "0.7.2"; doJailbreak super.crucible; + # 2025-04-23: Allow bytestring >= 0.12 + # https://github.com/mrkkrp/wave/issues/48 + wave = doJailbreak super.wave; + # Test suite no longer compiles with hspec-hedgehog >= 0.3 finitary = dontCheck super.finitary;