Adds ocaml-camlpdf-1.7.2

OCaml library for reading, writing and modifying PDF files

Homepage: https://github.com/johnwhitington/camlpdf
This commit is contained in:
Vincent Laporte 2014-11-16 08:42:55 +00:00
parent fb76f0fe7d
commit 099d145590
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{stdenv, fetchgit, ocaml, findlib, ncurses}:
stdenv.mkDerivation {
name = "ocaml-camlpdf-1.7.2";
src = fetchgit {
url = https://github.com/johnwhitington/camlpdf.git;
rev = "73ee0c4cc71e4d5f2f046d0b41d301e0df1d78d9";
sha256 = "0n3jpkwbh0qi282hvsvgz0hv9lwwd8rqy3pwgmpqr0rmbim8wss5";
};
buildInputs = [ ocaml findlib ncurses ];
# Version number in META file is wrong
patchPhase = ''
patch -p 0 META <<EOF
3c3
< version="1.7.1"
---
> version="1.7.2"
EOF
'';
createFindlibDestdir = true;
meta = with stdenv.lib; {
description = "An OCaml library for reading, writing and modifying PDF files";
homepage = https://github.com/johnwhitington/camlpdf;
license = licenses.lgpl21Plus;
maintainers = with maintainers; [vbgl];
};
}

View file

@ -3551,6 +3551,8 @@ let
camlp5_transitional = camlp5_6_transitional;
camlpdf = callPackage ../development/ocaml-modules/camlpdf { };
calendar = callPackage ../development/ocaml-modules/calendar { };
camlzip = callPackage ../development/ocaml-modules/camlzip { };