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:
parent
fb76f0fe7d
commit
099d145590
31
pkgs/development/ocaml-modules/camlpdf/default.nix
Normal file
31
pkgs/development/ocaml-modules/camlpdf/default.nix
Normal 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];
|
||||||
|
};
|
||||||
|
}
|
@ -3551,6 +3551,8 @@ let
|
|||||||
|
|
||||||
camlp5_transitional = camlp5_6_transitional;
|
camlp5_transitional = camlp5_6_transitional;
|
||||||
|
|
||||||
|
camlpdf = callPackage ../development/ocaml-modules/camlpdf { };
|
||||||
|
|
||||||
calendar = callPackage ../development/ocaml-modules/calendar { };
|
calendar = callPackage ../development/ocaml-modules/calendar { };
|
||||||
|
|
||||||
camlzip = callPackage ../development/ocaml-modules/camlzip { };
|
camlzip = callPackage ../development/ocaml-modules/camlzip { };
|
||||||
|
Loading…
Reference in New Issue
Block a user