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-10 00:00:20 +01:00
|
|
|
}:
|
2009-06-30 09:04:12 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-06-30 09:04:12 +01:00
|
|
|
pname = "pandoc";
|
2012-04-06 00:03:52 +01:00
|
|
|
version = "1.9.2";
|
|
|
|
sha256 = "1hp51ddfwlg4pg5n16jhf7w8r4s074n5baiy55fi2p47lx278jsq";
|
2011-08-10 00:00:20 +01: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 19:22:28 +01:00
|
|
|
];
|
2009-06-30 09:04:12 +01:00
|
|
|
meta = {
|
2011-08-07 19:22:28 +01:00
|
|
|
homepage = "http://johnmacfarlane.net/pandoc";
|
2009-06-30 09:04:12 +01:00
|
|
|
description = "Conversion between markup formats";
|
2011-08-07 19:22:28 +01:00
|
|
|
license = "GPL";
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-06-30 09:04:12 +01:00
|
|
|
};
|
2010-09-07 13:58:07 +01:00
|
|
|
})
|