4fdbd75e4f
- ghc-mod: updated to version 1.10.16 - network: added version 2.3.0.14 - pandoc: updated to version 1.9.4 - xmobar: updated to version 0.15 svn path=/nixpkgs/trunk/; revision=34337
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.4";
|
|
sha256 = "0rqj9a3pkbhlqsmpxvjzahn992lm1pdg1bry677y8f5203ji10p2";
|
|
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 ];
|
|
};
|
|
})
|