2013-09-16 09:50:04 +01:00
|
|
|
{ cabal, aeson, alex, ansiTerminal, attoparsec, base64Bytestring
|
2014-01-11 11:08:26 +00:00
|
|
|
, binary, blazeHtml, blazeMarkup, dataDefault, Diff
|
|
|
|
, extensibleExceptions, filepath, happy, highlightingKate, hslua
|
|
|
|
, HTTP, httpConduit, httpTypes, HUnit, mtl, network, pandocTypes
|
|
|
|
, parsec, QuickCheck, random, syb, tagsoup, temporary
|
|
|
|
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
|
|
|
|
, texmath, text, time, unorderedContainers, vector, xml, yaml
|
|
|
|
, 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";
|
2014-02-05 09:43:06 +00:00
|
|
|
version = "1.12.3.3";
|
|
|
|
sha256 = "0v7wvh93rz3k7phlz21627j5xakpi83174mchr3lwg4bmkfxn25s";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2014-01-11 11:08:26 +00:00
|
|
|
aeson alex attoparsec base64Bytestring binary blazeHtml blazeMarkup
|
2013-09-16 09:50:04 +01:00
|
|
|
dataDefault extensibleExceptions filepath happy highlightingKate
|
|
|
|
hslua HTTP httpConduit httpTypes mtl network pandocTypes parsec
|
2013-09-21 09:20:15 +01:00
|
|
|
random syb tagsoup temporary texmath text time unorderedContainers
|
|
|
|
vector xml yaml 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
|
|
|
|
];
|
2013-09-21 09:20:15 +01:00
|
|
|
buildTools = [ alex happy ];
|
2013-12-14 12:21:00 +00:00
|
|
|
jailbreak = true;
|
2013-12-14 20:32:56 +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
|
|
|
})
|