36 lines
886 B
Nix
36 lines
886 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 or [];
|
|
description = "PDF Command Line Tools";
|
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
|
};
|
|
}
|