2012-09-17 15:51:00 +02:00
|
|
|
{ cabal, base64Bytestring, blazeHtml, blazeMarkup, citeprocHs
|
2013-01-20 16:42:50 +01:00
|
|
|
, dataDefault, extensibleExceptions, filepath, highlightingKate
|
|
|
|
, HTTP, json, mtl, network, pandocTypes, parsec, random, syb
|
|
|
|
, tagsoup, temporary, texmath, text, time, 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";
|
2013-01-25 14:52:04 +01:00
|
|
|
version = "1.10.0.5";
|
|
|
|
sha256 = "05mjgvxk3wxfssf4aviigdm6jb73a6bp8lwz86aabdgkgh2i6n54";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-01-20 16:42:50 +01:00
|
|
|
base64Bytestring blazeHtml blazeMarkup citeprocHs dataDefault
|
2012-09-17 15:51:00 +02:00
|
|
|
extensibleExceptions filepath highlightingKate HTTP json mtl
|
|
|
|
network pandocTypes parsec random syb tagsoup temporary texmath
|
2013-01-20 16:42:50 +01:00
|
|
|
text time 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-12-06 11:32:56 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-06-30 10:04:12 +02:00
|
|
|
};
|
2010-09-07 14:58:07 +02:00
|
|
|
})
|