39 lines
971 B
Nix
39 lines
971 B
Nix
{ lib, stdenv, fetchFromGitHub, ocaml, findlib, camlpdf, ncurses }:
|
|
|
|
if !lib.versionAtLeast ocaml.version "4.10"
|
|
then throw "cpdf is not available for OCaml ${ocaml.version}"
|
|
else
|
|
|
|
let version = "2.4"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ocaml${ocaml.version}-cpdf-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "johnwhitington";
|
|
repo = "cpdf-source";
|
|
rev = "v${version}";
|
|
sha256 = "1a8lmfc76dr8x6pxgm4aypbys02pfma9yh4z3l1qxp2q1909na5l";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ncurses ];
|
|
propagatedBuildInputs = [ camlpdf ];
|
|
|
|
preInstall = ''
|
|
mkdir -p $OCAMLFIND_DESTDIR
|
|
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 = with lib; {
|
|
homepage = "https://www.coherentpdf.com/";
|
|
platforms = ocaml.meta.platforms or [];
|
|
description = "PDF Command Line Tools";
|
|
license = licenses.unfree;
|
|
maintainers = [ maintainers.vbgl ];
|
|
};
|
|
}
|