From 7ef37f88061e57e6771d650499714469c421cbd2 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Sun, 17 Jan 2021 22:58:09 +0100 Subject: [PATCH] haskellPackages.pandoc: Temporarily disable tests --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 8025c521ce8..baac651d5b0 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;