d98161617f
- hinotify: added meta.maintainers section - hledger-lib: update to version 0.18.1 - hledger: update to version 0.18.1 - hledger-web: update to version 0.18.1 - lifted-base: update to version 0.1.1.1 - monad-control: update to version 0.3.1.4 - multiarg: update to version 0.4.0.0 - pandoc: update to version 1.9.4.2 - shelly: update to version 0.12.2
26 lines
897 B
Nix
26 lines
897 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.2";
|
|
sha256 = "1zr2qx6bimyhzia5maqpb454hgdwjvgs234mcki4f1z3dgbq0lsk";
|
|
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 ];
|
|
};
|
|
})
|