Added pandoc and dependencies.

svn path=/nixpkgs/trunk/; revision=16091
This commit is contained in:
Andres Löh
2009-06-30 08:04:12 +00:00
parent ac3253387f
commit 785b190861
4 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{cabal, mtl, network, parsec, utf8String, xhtml, zipArchive}:
cabal.mkDerivation (self : {
pname = "pandoc";
version = "1.2";
sha256 = "e922c8f4765a8d105abf30dbe21a73961357929cd2fb8dfd323f0f62ca0723b4";
propagatedBuildInputs = [mtl network parsec utf8String xhtml zipArchive];
meta = {
description = "Conversion between markup formats";
};
})