From f382de263b26946da179341c79865e1651581bb8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 13 Feb 2019 09:47:29 +0100 Subject: [PATCH] pandoc: switch to latest version despite LTS 13.x recommendations The 2.5.x version no longer passes its test suite with recent versions of its dependencies. --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index e13f87ed6d6..b6ba0d7ad50 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1223,4 +1223,8 @@ self: super: { })]; }); + # Use latest pandoc despite what LTS says. + pandoc = self.pandoc_2_6; + pandoc-citeproc = self.pandoc-citeproc_0_16_0_2; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super