2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, which, ocaml, findlib }:
|
2019-09-23 19:55:47 +00:00
|
|
|
|
2022-01-17 08:14:53 +00:00
|
|
|
if !lib.versionAtLeast ocaml.version "4.10"
|
2019-09-23 19:55:47 +00:00
|
|
|
then throw "camlpdf is not available for OCaml ${ocaml.version}"
|
|
|
|
else
|
2014-11-16 08:42:55 +00:00
|
|
|
|
2014-12-31 11:21:55 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2022-01-17 08:14:53 +00:00
|
|
|
version = "2.5";
|
2022-02-10 00:28:00 +00:00
|
|
|
pname = "ocaml${ocaml.version}-camlpdf";
|
|
|
|
|
2019-09-23 19:55:47 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "johnwhitington";
|
|
|
|
repo = "camlpdf";
|
|
|
|
rev = "v${version}";
|
2022-01-17 08:14:53 +00:00
|
|
|
sha256 = "sha256:1qmsa0xgi960y7r20mvf8hxiiml7l1908s4dm7nq262f19w51gsl";
|
2014-11-16 08:42:55 +00:00
|
|
|
};
|
|
|
|
|
2020-08-20 05:17:40 +00:00
|
|
|
buildInputs = [ which ocaml findlib ];
|
2014-11-16 08:42:55 +00:00
|
|
|
|
2020-08-20 05:17:40 +00:00
|
|
|
preInstall = ''
|
|
|
|
mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs
|
|
|
|
'';
|
2014-11-16 08:42:55 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-11-16 08:42:55 +00:00
|
|
|
description = "An OCaml library for reading, writing and modifying PDF files";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/johnwhitington/camlpdf";
|
2014-11-16 08:42:55 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
maintainers = with maintainers; [vbgl];
|
|
|
|
};
|
|
|
|
}
|