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