58f3a6e25e
- accelerate-cuda: updated to version 0.12.1.0 - accelerate-examples: updated to version 0.12.1.0 - accelerate-io: updated to version 0.12.1.0 - accelerate: updated to version 0.12.1.0 - hakyll: updated to version 3.3.0.1 - pandoc: updated to version 1.9.4.1 - Vec: updated to version 0.9.9 svn path=/nixpkgs/trunk/; revision=34431
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.1";
|
|
sha256 = "0n3jfk7b1vn8b1ryys6lm1drdx469q26gi0chzlf0wss1ss07x78";
|
|
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 ];
|
|
};
|
|
})
|