From e259180cdafe2c893f29bbe85fbdea1403fce906 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Tue, 11 Feb 2025 19:33:16 +0100 Subject: [PATCH] haskellPackages.nothunks: enable tests Upstream issue resolved, but by now hedgehog is too strict. This one is possible to jailbreak, though. --- pkgs/development/haskell-modules/configuration-common.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index b1da5c14e440..9c91a18bf84b 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1888,9 +1888,8 @@ self: super: { # Missing test files in 1.8.1.0, fixed in 1.8.1.1 sequence-formats = dontCheck super.sequence-formats; - # Test suite has overly strict bounds on tasty, jailbreaking fails. - # https://github.com/input-output-hk/nothunks/issues/9 - nothunks = dontCheck super.nothunks; + # 2025-02-11: Too strict bounds on hedgehog < 1.5 + nothunks = doJailbreak super.nothunks; # Allow building with older versions of http-client. http-client-restricted = doJailbreak super.http-client-restricted;