2012-02-16 18:05:41 +04:00
|
|
|
{ cabal, base64Bytestring, blazeHtml, citeprocHs
|
2012-02-14 21:00:37 +04:00
|
|
|
, extensibleExceptions, filepath, highlightingKate, HTTP, json, mtl
|
|
|
|
, network, pandocTypes, parsec, random, syb, tagsoup, temporary
|
|
|
|
, texmath, time, utf8String, xml, zipArchive, zlib
|
2011-08-10 03:00:20 +04:00
|
|
|
}:
|
2009-06-30 12:04:12 +04:00
|
|
|
|
2011-08-10 03:00:20 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2009-06-30 12:04:12 +04:00
|
|
|
pname = "pandoc";
|
2012-06-11 11:04:40 +04:00
|
|
|
version = "1.9.4.1";
|
|
|
|
sha256 = "0n3jfk7b1vn8b1ryys6lm1drdx469q26gi0chzlf0wss1ss07x78";
|
2011-08-10 03:00:20 +04:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 18:05:41 +04: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 22:22:28 +04:00
|
|
|
];
|
2009-06-30 12:04:12 +04:00
|
|
|
meta = {
|
2011-08-07 22:22:28 +04:00
|
|
|
homepage = "http://johnmacfarlane.net/pandoc";
|
2009-06-30 12:04:12 +04:00
|
|
|
description = "Conversion between markup formats";
|
2011-08-07 22:22:28 +04:00
|
|
|
license = "GPL";
|
2011-08-09 13:54:50 +04:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 14:21:28 +04:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-06-30 12:04:12 +04:00
|
|
|
};
|
2010-09-07 16:58:07 +04:00
|
|
|
})
|