From baa0521980c423be7a8de06d18757ef4af4d22f0 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Tue, 12 Aug 2025 19:23:30 +0200 Subject: [PATCH] haskellPackages.statistics: allow building with doctest >= 0.24 --- 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 dba94d81690f..a792c64b409c 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2706,6 +2706,10 @@ with haskellLib; # https://github.com/tweag/webauthn/issues/166 webauthn = dontCheck super.webauthn; + # Allow doctest >= 0.24 + # https://github.com/haskell/statistics/issues/222 + statistics = doJailbreak super.statistics; + # calls ghc in tests # https://github.com/brandonchinn178/tasty-autocollect/issues/54 tasty-autocollect = dontCheck super.tasty-autocollect;