2012-09-17 15:51:00 +02:00
|
|
|
{ cabal, base64Bytestring, blazeHtml, blazeMarkup, citeprocHs
|
2012-02-14 18:00:37 +01:00
|
|
|
, extensibleExceptions, filepath, highlightingKate, HTTP, json, mtl
|
|
|
|
, network, pandocTypes, parsec, random, syb, tagsoup, temporary
|
|
|
|
, texmath, time, utf8String, xml, zipArchive, zlib
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2009-06-30 10:04:12 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-06-30 10:04:12 +02:00
|
|
|
pname = "pandoc";
|
2012-10-23 18:29:59 +02:00
|
|
|
version = "1.9.4.5";
|
|
|
|
sha256 = "05k8i537756m07xlb6kgshpfxa4sp2jxidb1c8m72ilpai13r6fb";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-09-17 15:51:00 +02: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 20:22:28 +02:00
|
|
|
];
|
2012-09-17 15:51:00 +02:00
|
|
|
configureFlags = "-fblaze_html_0_5";
|
2009-06-30 10:04:12 +02:00
|
|
|
meta = {
|
2011-08-07 20:22:28 +02:00
|
|
|
homepage = "http://johnmacfarlane.net/pandoc";
|
2009-06-30 10:04:12 +02:00
|
|
|
description = "Conversion between markup formats";
|
2011-08-07 20:22:28 +02:00
|
|
|
license = "GPL";
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-06-30 10:04:12 +02:00
|
|
|
};
|
2010-09-07 14:58:07 +02:00
|
|
|
})
|