2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, ocaml, findlib, camlpdf, ncurses }:
|
2015-01-30 14:39:08 +00:00
|
|
|
|
2020-08-20 05:17:49 +00:00
|
|
|
let version = "2.3.1"; in
|
2015-01-30 14:39:08 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2017-01-20 06:36:44 +00:00
|
|
|
name = "ocaml${ocaml.version}-cpdf-${version}";
|
2015-01-30 14:39:08 +00:00
|
|
|
|
2019-09-23 19:55:58 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "johnwhitington";
|
|
|
|
repo = "cpdf-source";
|
|
|
|
rev = "v${version}";
|
2020-08-20 05:17:49 +00:00
|
|
|
sha256 = "1gwz0iy28f67kbqap2q10nf98dalwbi03vv5j893z2an7pb4w68z";
|
2015-01-30 14:39:08 +00:00
|
|
|
};
|
|
|
|
|
2020-08-20 05:17:49 +00:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace META --replace 'version="1.7"' 'version="${version}"'
|
|
|
|
'';
|
|
|
|
|
2015-01-30 14:39:08 +00:00
|
|
|
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/
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.coherentpdf.com/";
|
2015-12-24 17:49:07 +00:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2015-01-30 14:39:08 +00:00
|
|
|
description = "PDF Command Line Tools";
|
2018-07-08 21:11:19 +00:00
|
|
|
license = licenses.unfree;
|
|
|
|
maintainers = [ maintainers.vbgl ];
|
2015-01-30 14:39:08 +00:00
|
|
|
};
|
|
|
|
}
|