Added pandoc and dependencies.
svn path=/nixpkgs/trunk/; revision=16091
This commit is contained in:
parent
ac3253387f
commit
785b190861
4 changed files with 49 additions and 0 deletions
12
pkgs/development/libraries/haskell/digest/default.nix
Normal file
12
pkgs/development/libraries/haskell/digest/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{cabal, zlib}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "digest";
|
||||
version = "0.0.0.5";
|
||||
sha256 = "dddfcdd325dc7d4fb1ce4772c1f5618cb20504b28dba8a78682011cba1341efd";
|
||||
propagatedBuildInputs = [zlib];
|
||||
meta = {
|
||||
description = "Various cryptographic hashes for bytestrings: CRC32 and Adler32 for now";
|
||||
};
|
||||
})
|
||||
|
12
pkgs/development/libraries/haskell/pandoc/default.nix
Normal file
12
pkgs/development/libraries/haskell/pandoc/default.nix
Normal 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";
|
||||
};
|
||||
})
|
||||
|
12
pkgs/development/libraries/haskell/zip-archive/default.nix
Normal file
12
pkgs/development/libraries/haskell/zip-archive/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{cabal, binary, mtl, utf8String, zlib, digest}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "zip-archive";
|
||||
version = "0.1.1.3";
|
||||
sha256 = "2caa3e6020c394c740b942685306c71e91bebf6e499627dc20fdf0ac7925a57a";
|
||||
propagatedBuildInputs = [binary mtl utf8String zlib digest];
|
||||
meta = {
|
||||
description = "Library for creating and modifying zip archives";
|
||||
};
|
||||
})
|
||||
|
|
@ -55,6 +55,11 @@ rec {
|
|||
inherit cabal;
|
||||
};
|
||||
|
||||
digest = import ../development/libraries/haskell/digest {
|
||||
inherit cabal;
|
||||
inherit (pkgs) zlib;
|
||||
};
|
||||
|
||||
dotgen = import ../development/libraries/haskell/dotgen {
|
||||
inherit cabal;
|
||||
};
|
||||
|
@ -213,6 +218,10 @@ rec {
|
|||
inherit (pkgs.xlibs) libX11;
|
||||
};
|
||||
|
||||
pandoc = import ../development/libraries/haskell/pandoc {
|
||||
inherit cabal mtl network parsec utf8String xhtml zipArchive;
|
||||
};
|
||||
|
||||
parallel = import ../development/libraries/haskell/parallel {
|
||||
inherit cabal;
|
||||
};
|
||||
|
@ -370,6 +379,10 @@ rec {
|
|||
inherit cabal;
|
||||
};
|
||||
|
||||
zipArchive = import ../development/libraries/haskell/zip-archive {
|
||||
inherit cabal binary mtl utf8String zlib digest;
|
||||
};
|
||||
|
||||
zipper = import ../development/libraries/haskell/zipper {
|
||||
inherit cabal multirec;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue