2013-03-09 23:26:26 +00:00
|
|
|
{ cabal, ansiTerminal, base64Bytestring, blazeHtml, blazeMarkup
|
|
|
|
, citeprocHs, dataDefault, Diff, extensibleExceptions, filepath
|
|
|
|
, highlightingKate, HTTP, HUnit, json, mtl, network, pandocTypes
|
|
|
|
, parsec, QuickCheck, random, syb, tagsoup, temporary
|
|
|
|
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
|
|
|
|
, texmath, text, time, xml, zipArchive, zlib
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2009-06-30 09:04:12 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-06-30 09:04:12 +01:00
|
|
|
pname = "pandoc";
|
2013-03-18 11:02:04 +00:00
|
|
|
version = "1.11.1";
|
|
|
|
sha256 = "0b23vrgkm1csykx1zrldkg5ka816j6m7a5fhs4cxffalifq91c7b";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-01-20 15:42:50 +00:00
|
|
|
base64Bytestring blazeHtml blazeMarkup citeprocHs dataDefault
|
2012-09-17 14:51:00 +01:00
|
|
|
extensibleExceptions filepath highlightingKate HTTP json mtl
|
|
|
|
network pandocTypes parsec random syb tagsoup temporary texmath
|
2013-01-20 15:42:50 +00:00
|
|
|
text time xml zipArchive zlib
|
2011-08-07 19:22:28 +01:00
|
|
|
];
|
2013-03-09 23:26:26 +00:00
|
|
|
testDepends = [
|
|
|
|
ansiTerminal Diff filepath highlightingKate HUnit pandocTypes
|
|
|
|
QuickCheck syb testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2 text
|
|
|
|
];
|
2012-09-17 14:51:00 +01:00
|
|
|
configureFlags = "-fblaze_html_0_5";
|
2013-02-24 23:23:57 +00:00
|
|
|
doCheck = false;
|
2009-06-30 09:04:12 +01:00
|
|
|
meta = {
|
2011-08-07 19:22:28 +01:00
|
|
|
homepage = "http://johnmacfarlane.net/pandoc";
|
2009-06-30 09:04:12 +01:00
|
|
|
description = "Conversion between markup formats";
|
2011-08-07 19:22:28 +01:00
|
|
|
license = "GPL";
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-12-06 10:32:56 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-06-30 09:04:12 +01:00
|
|
|
};
|
2010-09-07 13:58:07 +01:00
|
|
|
})
|