From a5f1afdf0fb99403fe494a733c7119cf7d879127 Mon Sep 17 00:00:00 2001 From: sterni Date: Wed, 10 Jun 2026 06:40:59 +0200 Subject: [PATCH] haskellPackages.pandoc: drop patch applied by upstream --- .../haskell-modules/configuration-common.nix | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 61b3f7054911..0e169350a829 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -854,18 +854,6 @@ with haskellLib; doJailbreak ]; - pandoc = overrideCabal (drv: { - patches = drv.patches or [ ] ++ [ - # Resolve test suite race condition(s) due to tasty >= 1.5.4 and - # inDirectory, https://github.com/jgm/pandoc/issues/11566 krank:ignore-line - (pkgs.fetchpatch { - name = "pandoc-tests-fix-race-condition.patch"; - url = "https://github.com/jgm/pandoc/commit/134296c54145ef8ea7de523774837055239e0b3d.patch"; - hash = "sha256-s3v6ukoVZm8cvh9mAp0U+cQDT3p8QSu1F0oQD4Ks9F8="; - }) - ]; - }) super.pandoc; - # Too strict upper bound on data-default-class (< 0.2) # https://github.com/stackbuilders/dotenv-hs/issues/203 dotenv = doJailbreak super.dotenv;