From 4e9ffcff7b953cf1267a592f120f317031d14719 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 7 Apr 2019 19:46:53 +0200 Subject: [PATCH] haskellPackages.yesod-markdown: jailbreak --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index d9da4d2074c7..10a38e12d902 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1279,4 +1279,7 @@ self: super: { # Fix build with attr-2.4.48 (see #53716) xattr = appendPatch super.xattr ./patches/xattr-fix-build.patch; + # Break out of pandoc >=2.0 && <2.7 (https://github.com/pbrisbin/yesod-markdown/pull/65) + yesod-markdown = doJailbreak super.yesod-markdown; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super