2013-09-16 10:50:04 +02:00
|
|
|
{ cabal, aeson, alex, ansiTerminal, attoparsec, base64Bytestring
|
|
|
|
, blazeHtml, blazeMarkup, dataDefault, Diff, extensibleExceptions
|
|
|
|
, filepath, happy, highlightingKate, hslua, HTTP, httpConduit
|
|
|
|
, httpTypes, HUnit, mtl, network, pandocTypes, parsec, QuickCheck
|
2013-09-21 10:20:15 +02:00
|
|
|
, random, syb, tagsoup, temporary, testFramework
|
2013-09-16 10:50:04 +02:00
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, texmath, text, time
|
|
|
|
, unorderedContainers, vector, xml, yaml, 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-12-09 13:03:22 +01:00
|
|
|
version = "1.12.2.1";
|
|
|
|
sha256 = "1xyvhfsz0cy5f7cwpz4kl0l87vylb8860c06wvk49z9fh2xkg6lf";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-09-16 10:50:04 +02:00
|
|
|
aeson alex attoparsec base64Bytestring blazeHtml blazeMarkup
|
|
|
|
dataDefault extensibleExceptions filepath happy highlightingKate
|
|
|
|
hslua HTTP httpConduit httpTypes mtl network pandocTypes parsec
|
2013-09-21 10:20:15 +02:00
|
|
|
random syb tagsoup temporary texmath text time unorderedContainers
|
|
|
|
vector xml yaml zipArchive zlib
|
2011-08-07 20:22:28 +02:00
|
|
|
];
|
2013-03-10 00:26:26 +01:00
|
|
|
testDepends = [
|
|
|
|
ansiTerminal Diff filepath highlightingKate HUnit pandocTypes
|
|
|
|
QuickCheck syb testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2 text
|
|
|
|
];
|
2013-09-21 10:20:15 +02:00
|
|
|
buildTools = [ alex happy ];
|
2013-12-14 13:21:00 +01:00
|
|
|
jailbreak = true;
|
2013-12-14 21:32:56 +01:00
|
|
|
doCheck = false;
|
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
|
|
|
})
|