2012-09-17 17:51:00 +04:00
|
|
|
{ cabal, base64Bytestring, blazeHtml, blazeMarkup, citeprocHs
|
2012-02-14 21:00:37 +04:00
|
|
|
, extensibleExceptions, filepath, highlightingKate, HTTP, json, mtl
|
|
|
|
, network, pandocTypes, parsec, random, syb, tagsoup, temporary
|
|
|
|
, texmath, time, utf8String, xml, zipArchive, zlib
|
2011-08-10 03:00:20 +04:00
|
|
|
}:
|
2009-06-30 12:04:12 +04:00
|
|
|
|
2011-08-10 03:00:20 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2009-06-30 12:04:12 +04:00
|
|
|
pname = "pandoc";
|
2012-07-02 12:44:37 +04:00
|
|
|
version = "1.9.4.2";
|
|
|
|
sha256 = "1zr2qx6bimyhzia5maqpb454hgdwjvgs234mcki4f1z3dgbq0lsk";
|
2011-08-10 03:00:20 +04:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-09-17 17:51:00 +04:00
|
|
|
base64Bytestring blazeHtml blazeMarkup citeprocHs
|
|
|
|
extensibleExceptions filepath highlightingKate HTTP json mtl
|
|
|
|
network pandocTypes parsec random syb tagsoup temporary texmath
|
|
|
|
time utf8String xml zipArchive zlib
|
2011-08-07 22:22:28 +04:00
|
|
|
];
|
2012-09-17 17:51:00 +04:00
|
|
|
configureFlags = "-fblaze_html_0_5";
|
Use jailbreak to get rid of overspecified version restrictions to fix
builds of Agda, accelerate-cuda, clientsession, filestore, ghc-events,
gitit, happstack, happstack, happstack, hledger-lib, hledger, mime-mail,
pandoc, snap, wai-app-static, yesod-static, and urlencoded.
2012-09-06 17:21:17 +04:00
|
|
|
jailbreak = true;
|
2009-06-30 12:04:12 +04:00
|
|
|
meta = {
|
2011-08-07 22:22:28 +04:00
|
|
|
homepage = "http://johnmacfarlane.net/pandoc";
|
2009-06-30 12:04:12 +04:00
|
|
|
description = "Conversion between markup formats";
|
2011-08-07 22:22:28 +04:00
|
|
|
license = "GPL";
|
2011-08-09 13:54:50 +04:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 14:21:28 +04:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-06-30 12:04:12 +04:00
|
|
|
};
|
2010-09-07 16:58:07 +04:00
|
|
|
})
|