2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, base64Bytestring, blazeHtml, citeprocHs
|
2012-02-14 18:00:37 +01:00
|
|
|
, extensibleExceptions, filepath, 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-05-14 11:56:52 +02:00
|
|
|
version = "1.9.3";
|
|
|
|
sha256 = "0dhzzx91ljmrcmi3znz1xvj3gwma5z5bwc4fsp5y8zd5yyb9b4j0";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
base64Bytestring blazeHtml citeprocHs extensibleExceptions filepath
|
|
|
|
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
|
|
|
];
|
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-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-06-30 10:04:12 +02:00
|
|
|
};
|
2010-09-07 14:58:07 +02:00
|
|
|
})
|