Skip to content

Commit

Permalink
Adds ocaml-cpdf
Browse files Browse the repository at this point in the history
A range of tools to modify PDF files and a corresponding OCaml library

Homepage: http://www.coherentpdf.com/
  • Loading branch information
vbgl committed Jan 30, 2015
1 parent 14cd6ae commit 0b9e2f8
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/development/ocaml-modules/cpdf/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ stdenv, fetchgit, ocaml, findlib, camlpdf, ncurses }:

assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.0";

let version = "2.1.1"; in

stdenv.mkDerivation {
name = "ocaml-cpdf-${version}";

src = fetchgit {
url = https://github.com/johnwhitington/cpdf-source.git;
rev = "refs/tags/v${version}";
sha256 = "0c482wfa5q845k0ahx8irg1jl05ncn0kv42dg08zkph7xi6dmgnv";
};

buildInputs = [ ocaml findlib ncurses ];
propagatedBuildInputs = [ camlpdf ];

createFindlibDestdir = true;

postInstall = ''
mkdir -p $out/bin
cp cpdf $out/bin
mkdir -p $out/share/
cp -r doc $out/share
cp cpdfmanual.pdf $out/share/doc/cpdf/
'';

meta = {
homepage = http://www.coherentpdf.com/;
platforms = ocaml.meta.platforms;
description = "PDF Command Line Tools";
maintainers = with stdenv.lib.maintainers; [ vbgl ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3767,6 +3767,8 @@ let

config-file = callPackage ../development/ocaml-modules/config-file { };

cpdf = callPackage ../development/ocaml-modules/cpdf { };

cppo = callPackage ../development/tools/ocaml/cppo { };

cryptokit = callPackage ../development/ocaml-modules/cryptokit { };
Expand Down

0 comments on commit 0b9e2f8

Please sign in to comment.