From 6d84a7071d24eacc8ce7144f491f76b8ed0c8ae7 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Wed, 17 May 2023 23:50:29 +0200 Subject: [PATCH] haskellPackages.hedgehog-extras: allow building against aeson 2.0.* --- 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 3a30602cf776..591d1192bd00 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -733,6 +733,10 @@ self: super: { # https://github.com/qfpl/tasty-hedgehog/issues/70 tasty-sugar = doJailbreak super.tasty-sugar; + # Too strict lower bound on aeson + # https://github.com/input-output-hk/hedgehog-extras/issues/39 + hedgehog-extras = doJailbreak super.hedgehog-extras; + # Known issue with nondeterministic test suite failure # https://github.com/nomeata/tasty-expected-failure/issues/21 tasty-expected-failure = dontCheck super.tasty-expected-failure;