2012-02-07 10:34:30 +00:00
|
|
|
{ cabal, base64Bytestring, blazeHtml, citeprocHs
|
|
|
|
, extensibleExceptions, highlightingKate, HTTP, json, mtl, network
|
|
|
|
, pandocTypes, parsec, random, syb, tagsoup, temporary, texmath
|
|
|
|
, time, utf8String, xml, zipArchive, zlib
|
2011-08-09 23:00:20 +00:00
|
|
|
}:
|
2009-06-30 08:04:12 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2009-06-30 08:04:12 +00:00
|
|
|
pname = "pandoc";
|
2012-02-13 09:02:11 +00:00
|
|
|
version = "1.9.1.1";
|
|
|
|
sha256 = "1npyc99f90fhbfddr6x5dlnwdc3i1pnhg4xiv12fmf1cl8xlcpyl";
|
2011-08-09 23:00:20 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-07 10:34:30 +00:00
|
|
|
base64Bytestring blazeHtml citeprocHs extensibleExceptions
|
|
|
|
highlightingKate HTTP json mtl network pandocTypes parsec random
|
|
|
|
syb tagsoup temporary texmath time utf8String xml zipArchive zlib
|
2011-08-07 18:22:28 +00:00
|
|
|
];
|
2011-08-26 10:28:59 +00:00
|
|
|
configureFlags = "-fhighlighting -fthreaded";
|
2009-06-30 08:04:12 +00:00
|
|
|
meta = {
|
2011-08-07 18:22:28 +00:00
|
|
|
homepage = "http://johnmacfarlane.net/pandoc";
|
2009-06-30 08:04:12 +00:00
|
|
|
description = "Conversion between markup formats";
|
2011-08-07 18:22:28 +00:00
|
|
|
license = "GPL";
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-09 23:00:20 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-06-30 08:04:12 +00:00
|
|
|
};
|
2010-09-07 12:58:07 +00:00
|
|
|
})
|