From 00a35c51c7f5878ca03dd81b1381ffce6c9f1e4d Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Mon, 29 Jun 2026 19:36:15 +0200 Subject: [PATCH] haskellPackages.{yaya*}: allow doctest 0.25 --- .../development/haskell-modules/configuration-common.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 84632478b7d4..950d6c531792 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1551,6 +1551,15 @@ with haskellLib; servant-auth-docs = doJailbreak super.servant-auth-docs; servant-swagger = doJailbreak super.servant-swagger; + # 2026-06-29: allow doctest 0.25 + # https://github.com/sellout/yaya/issues/91 + yaya = doJailbreak super.yaya; + yaya-containers = doJailbreak super.yaya-containers; + yaya-hedgehog = doJailbreak super.yaya-hedgehog; + yaya-lens = doJailbreak super.yaya-lens; + yaya-quickcheck = doJailbreak super.yaya-quickcheck; + yaya-unsafe = doJailbreak super.yaya-unsafe; + # 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;