From 62d691b4cabe0837099af0bbbaa4fe4f6ca7d8f5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 May 2015 10:27:35 +0200 Subject: [PATCH] haskell-pandoc: don't use shared linking for executables The build contains special magic surrounding the build of make-pandoc-man-pages, and that magic fails in case we link binaries dynamically. --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 31093a46340e..b22d3f736cea 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -675,8 +675,8 @@ self: super: { # https://github.com/junjihashimoto/test-sandbox-compose/issues/2 test-sandbox-compose = dontCheck super.test-sandbox-compose; - # https://github.com/jgm/pandoc/issues/2036 - pandoc = dontCheck super.pandoc; + # https://github.com/jgm/pandoc/issues/2190 + pandoc = disableSharedExecutables super.pandoc; # Broken by GLUT update. Monadius = markBroken super.Monadius;