13a10c3e54
- authenticate: updated to version 1.2.1.1 - blaze-html: added version 0.5.0.0 (unused right now because happstack can't deal with it) - BNFC-meta: updated to version 0.3.0.2 - graphviz: patched build to succeed with transformers 0.3.x - haskeline: updated to version 0.6.4.7 - http-conduit: updated to version 1.4.1.3 - numeric-prelude: updated to version 0.3.0.2 - pandoc: updated to version 1.9.3 svn path=/nixpkgs/trunk/; revision=34087
26 lines
895 B
Nix
26 lines
895 B
Nix
{ cabal, base64Bytestring, blazeHtml, citeprocHs
|
|
, extensibleExceptions, filepath, highlightingKate, HTTP, json, mtl
|
|
, network, pandocTypes, parsec, random, syb, tagsoup, temporary
|
|
, texmath, time, utf8String, xml, zipArchive, zlib
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "pandoc";
|
|
version = "1.9.3";
|
|
sha256 = "0dhzzx91ljmrcmi3znz1xvj3gwma5z5bwc4fsp5y8zd5yyb9b4j0";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
base64Bytestring blazeHtml citeprocHs extensibleExceptions filepath
|
|
highlightingKate HTTP json mtl network pandocTypes parsec random
|
|
syb tagsoup temporary texmath time utf8String xml zipArchive zlib
|
|
];
|
|
meta = {
|
|
homepage = "http://johnmacfarlane.net/pandoc";
|
|
description = "Conversion between markup formats";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|