summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorMalte Brandy <malte.brandy@maralorn.de>2021-01-17 22:58:09 +0100
committerPeter Simons <simons@cryp.to>2021-01-22 20:34:21 +0100
commit7ef37f88061e57e6771d650499714469c421cbd2 (patch)
treebfa5715cb54548cefcd84a1d5427d21591314757 /pkgs
parent8482fb4efd8f4b0be8fbb59a0292c8cd5073d07d (diff)
haskellPackages.pandoc: Temporarily disable tests
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 8025c521ce85..baac651d5b0f 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1375,6 +1375,11 @@ self: super: {
# jailbreaking pandoc-citeproc because it has not bumped upper bound on pandoc
pandoc-citeproc = doJailbreak super.pandoc-citeproc;
+ # 2021-01-17: Tests are broken because of a version mismatch.
+ # See here: https://github.com/jgm/pandoc/issues/7035
+ # This problem is fixed on master. Remove override when this assert fails.
+ pandoc = assert super.pandoc.version == "2.11.3.2"; dontCheck super.pandoc;
+
# The test suite attempts to read `/etc/resolv.conf`, which doesn't work in the sandbox.
domain-auth = dontCheck super.domain-auth;