nixpkgs/pkgs/development/libraries/haskell/pandoc/default.nix
Peter Simons bb5f77cfaa haskell-pandoc: updated to version 1.9.0.3
svn path=/nixpkgs/trunk/; revision=32074
2012-02-06 18:28:19 +00:00

34 lines
1.2 KiB
Nix

{ cabal, ansiTerminal, base64Bytestring, blazeHtml, citeprocHs
, Diff, extensibleExceptions, highlightingKate, HTTP, HUnit, json
, mtl, network, pandocTypes, parsec, QuickCheck, random, syb
, tagsoup, temporary, testFramework, testFrameworkHunit
, testFrameworkQuickcheck2, texmath, time, utf8String, xml
, zipArchive, zlib
}:
cabal.mkDerivation (self: {
pname = "pandoc";
version = "1.9.0.3";
sha256 = "1p5054sdvvgl38rr0ajfavr79rwr2l8jdrpzai329ksskkh1acdp";
isLibrary = true;
isExecutable = true;
buildDepends = [
ansiTerminal base64Bytestring blazeHtml citeprocHs Diff
extensibleExceptions highlightingKate HTTP HUnit json mtl network
pandocTypes parsec QuickCheck random syb tagsoup temporary
testFramework testFrameworkHunit testFrameworkQuickcheck2 texmath
time utf8String xml zipArchive zlib
];
configureFlags = "-fhighlighting -fthreaded";
meta = {
homepage = "http://johnmacfarlane.net/pandoc";
description = "Conversion between markup formats";
license = "GPL";
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})