From 1e9aa74229641aff33afc30a5a436cd03a798bd9 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Wed, 1 Jun 2022 11:47:09 +0200 Subject: [PATCH] haskellPackages.pandoc-crossref: allow pandoc 2.19 Clean up override for broken & deprecated pandoc-citeproc. --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 9e6fdffe0f99..88802206e707 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1515,8 +1515,9 @@ self: super: { liquidhaskell = super.liquidhaskell.override { Diff = self.Diff_0_3_4; }; Diff_0_3_4 = dontCheck super.Diff_0_3_4; - # jailbreaking pandoc-citeproc because it has not bumped upper bound on pandoc - pandoc-citeproc = doJailbreak super.pandoc-citeproc; + # jailbreaking pandoc-crossref because it has not bumped its upper bound on pandoc + # https://github.com/lierdakil/pandoc-crossref/issues/350 + pandoc-crossref = doJailbreak super.pandoc-crossref; # The test suite attempts to read `/etc/resolv.conf`, which doesn't work in the sandbox. domain-auth = dontCheck super.domain-auth;