nixpkgs/pkgs/development/ocaml-modules/cpdf/default.nix
Vincent Laporte 0b9e2f8798 Adds ocaml-cpdf
A range of tools to modify PDF files and a corresponding OCaml library

Homepage: http://www.coherentpdf.com/
2015-01-30 20:04:42 +01:00

36 lines
880 B
Nix

{ 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 ];
};
}