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