2011-08-14 22:52:05 +00:00
|
|
|
{ cabal, extensibleExceptions, HTTP, mtl, network, parsec, random
|
2011-08-12 00:18:56 +00:00
|
|
|
, syb, texmath, utf8String, xhtml, xml, zipArchive
|
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";
|
2011-08-07 22:00:27 +00:00
|
|
|
version = "1.6.0.1";
|
|
|
|
sha256 = "1imi6xkqzdy9y8kab04x8pn11r55j699apwrqvcz99j6f5g7xs9x";
|
2011-08-09 23:00:20 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2011-08-14 22:52:05 +00:00
|
|
|
extensibleExceptions HTTP mtl network parsec random syb texmath
|
2011-08-12 00:18:56 +00:00
|
|
|
utf8String xhtml xml zipArchive
|
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;
|
2011-08-09 23:00:20 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-06-30 08:04:12 +00:00
|
|
|
};
|
2010-09-07 12:58:07 +00:00
|
|
|
})
|