2012-02-07 11:34:30 +01: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-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";
|
2012-02-10 12:33:23 +01:00
|
|
|
version = "1.9.1";
|
|
|
|
sha256 = "00xwy1afy4cn7z2drsc4dnqd4g45i45v9f3jm9j6i32pz27y8s2a";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-07 11:34:30 +01: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 20:22:28 +02:00
|
|
|
];
|
2011-08-26 12:28:59 +02:00
|
|
|
configureFlags = "-fhighlighting -fthreaded";
|
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;
|
2011-08-10 01:00:20 +02: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
|
|
|
})
|