2013-09-16 01:50:04 -07: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 01:20:15 -07:00
|
|
|
, random, syb, tagsoup, temporary, testFramework
|
2013-09-16 01:50:04 -07:00
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, texmath, text, time
|
|
|
|
, unorderedContainers, vector, xml, yaml, zipArchive, zlib
|
2011-08-09 16:00:20 -07:00
|
|
|
}:
|
2009-06-30 01:04:12 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2009-06-30 01:04:12 -07:00
|
|
|
pname = "pandoc";
|
2013-10-23 01:29:21 -07:00
|
|
|
version = "1.12.1";
|
|
|
|
sha256 = "0csyrcfdqv2mc7ngn63lan3c1dd6zy0pb24k0z1lsraqlmmw76nf";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-09-16 01:50:04 -07:00
|
|
|
aeson alex attoparsec base64Bytestring blazeHtml blazeMarkup
|
|
|
|
dataDefault extensibleExceptions filepath happy highlightingKate
|
|
|
|
hslua HTTP httpConduit httpTypes mtl network pandocTypes parsec
|
2013-09-21 01:20:15 -07:00
|
|
|
random syb tagsoup temporary texmath text time unorderedContainers
|
|
|
|
vector xml yaml zipArchive zlib
|
2011-08-07 11:22:28 -07:00
|
|
|
];
|
2013-03-09 15:26:26 -08:00
|
|
|
testDepends = [
|
|
|
|
ansiTerminal Diff filepath highlightingKate HUnit pandocTypes
|
|
|
|
QuickCheck syb testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2 text
|
|
|
|
];
|
2013-09-21 01:20:15 -07:00
|
|
|
buildTools = [ alex happy ];
|
2013-02-24 15:23:57 -08:00
|
|
|
doCheck = false;
|
2009-06-30 01:04:12 -07:00
|
|
|
meta = {
|
2011-08-07 11:22:28 -07:00
|
|
|
homepage = "http://johnmacfarlane.net/pandoc";
|
2009-06-30 01:04:12 -07:00
|
|
|
description = "Conversion between markup formats";
|
2011-08-07 11:22:28 -07:00
|
|
|
license = "GPL";
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-12-06 02:32:56 -08:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-06-30 01:04:12 -07:00
|
|
|
};
|
2010-09-07 05:58:07 -07:00
|
|
|
})
|