forked from mirrors/nixpkgs
ae49a474ff
svn path=/nixpkgs/trunk/; revision=23742
15 lines
421 B
Nix
15 lines
421 B
Nix
{cabal, mtl, network, parsec, utf8String, xhtml, zipArchive, HTTP, xml,
|
|
texmath, random}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "pandoc";
|
|
version = "1.6";
|
|
sha256 = "9b825233293edf1ea414b0e7ea821d6a914711dc2c60546566ab5a97512b079b";
|
|
propagatedBuildInputs = [
|
|
mtl network parsec utf8String xhtml zipArchive HTTP xml texmath random
|
|
];
|
|
meta = {
|
|
description = "Conversion between markup formats";
|
|
};
|
|
})
|