3
0
Fork 0
forked from mirrors/nixpkgs

haskell-pandoc: enable building with blaze-html 0.5 or later

This commit is contained in:
Peter Simons 2012-09-17 15:51:00 +02:00
parent 9a6c3c8f60
commit 097e1bfdbd

View file

@ -1,4 +1,4 @@
{ cabal, base64Bytestring, blazeHtml, citeprocHs
{ cabal, base64Bytestring, blazeHtml, blazeMarkup, citeprocHs
, extensibleExceptions, filepath, highlightingKate, HTTP, json, mtl
, network, pandocTypes, parsec, random, syb, tagsoup, temporary
, texmath, time, utf8String, xml, zipArchive, zlib
@ -11,10 +11,12 @@ cabal.mkDerivation (self: {
isLibrary = true;
isExecutable = true;
buildDepends = [
base64Bytestring blazeHtml citeprocHs extensibleExceptions filepath
highlightingKate HTTP json mtl network pandocTypes parsec random
syb tagsoup temporary texmath time utf8String xml zipArchive zlib
base64Bytestring blazeHtml blazeMarkup citeprocHs
extensibleExceptions filepath highlightingKate HTTP json mtl
network pandocTypes parsec random syb tagsoup temporary texmath
time utf8String xml zipArchive zlib
];
configureFlags = "-fblaze_html_0_5";
jailbreak = true;
meta = {
homepage = "http://johnmacfarlane.net/pandoc";