From b48e351eeb475ae9dfc7e0170a3ff3b5bc2904ab Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Thu, 24 Nov 2022 03:13:51 +0100 Subject: [PATCH] haskellPackages.wide-word: lift constraint on hedgehog --- 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 56e4ecccceee..0212fd97e30b 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -135,6 +135,10 @@ self: super: { # https://github.com/cachix/cachix/pull/451 cachix = appendPatch ./patches/cachix.patch super.cachix; + # Too strict upper bound on hedgehog + # https://github.com/erikd/wide-word/issues/71 + wide-word = doJailbreak super.wide-word; + # https://github.com/froozen/kademlia/issues/2 kademlia = dontCheck super.kademlia;