nixpkgs/pkgs/development/libraries/haskell/pandoc/default.nix
Andres Löh 923d30959f Added yst; updated happstack, pandoc, gitit and dependencies.
svn path=/nixpkgs/trunk/; revision=23670
2010-09-07 12:58:07 +00:00

15 lines
406 B
Nix

{cabal, mtl, network, parsec, utf8String, xhtml, zipArchive, HTTP, xml,
texmath}:
cabal.mkDerivation (self : {
pname = "pandoc";
version = "1.6";
sha256 = "9b825233293edf1ea414b0e7ea821d6a914711dc2c60546566ab5a97512b079b";
propagatedBuildInputs = [
mtl network parsec utf8String xhtml zipArchive HTTP xml texmath
];
meta = {
description = "Conversion between markup formats";
};
})