From 1f55b03b166166032336bc5d94c92fac177be3c4 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 15 Mar 2026 17:08:26 +0100 Subject: [PATCH] haskellPackages.doctest-parallel: drop released patches --- .../haskell-modules/configuration-common.nix | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index fec72e288238..c02f802d36f6 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1200,20 +1200,6 @@ with haskellLib; # https://github.com/ndmitchell/shake/issues/804 shake = dontCheck super.shake; - # https://github.com/martijnbastiaan/doctest-parallel/pull/99 - doctest-parallel = lib.pipe super.doctest-parallel [ - (appendPatch (fetchpatch { - name = "ghc-9.14-fixes"; - url = "https://github.com/martijnbastiaan/doctest-parallel/commit/f3a40202ef8d2d4927dae706bf89f11b2800202d.patch"; - sha256 = "sha256-mKF/hpMXWq5meiBHNbIKAz6c33DWE7zzHkS+Hgl5uX4"; - })) - (overrideCabal (drv: { - # Revision change is not present in PR target branch - editedCabalFile = null; - revision = null; - })) - ]; - # https://github.com/nushio3/doctest-prop/issues/1 doctest-prop = dontCheck super.doctest-prop;