From 90e108c7176356b66436d64949bf9bc37b32ac3b Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Mon, 18 May 2026 10:58:10 +0200 Subject: [PATCH] haskellPackages.nix-derivation: allow QuickCheck 2.16 --- 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 ccb33f5308f5..2d464fa2c01f 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1528,6 +1528,10 @@ with haskellLib; # https://github.com/fizruk/http-api-data/issues/157 http-api-data = doJailbreak super.http-api-data; + # 2026-05-17: allow QuickCheck 2.16 + # https://github.com/Gabriella439/Haskell-Nix-Derivation-Library/issues/30 + nix-derivation = doJailbreak super.nix-derivation; + # chell-quickcheck doesn't work with QuickCheck >= 2.15 with no known fix yet # https://github.com/typeclasses/chell/issues/5 system-filepath = dontCheck super.system-filepath;