biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / camlpdf / default.nix
blob115bc5b2c55cd3f53f4b95a08a6a2799bd36c1d1
1 { lib, stdenv, fetchFromGitHub, which, ocaml, findlib }:
3 if lib.versionOlder ocaml.version "4.10"
4 then throw "camlpdf is not available for OCaml ${ocaml.version}"
5 else
7 stdenv.mkDerivation rec {
8   version = "2.7";
9   pname = "ocaml${ocaml.version}-camlpdf";
11   src = fetchFromGitHub {
12     owner = "johnwhitington";
13     repo = "camlpdf";
14     rev = "v${version}";
15     hash = "sha256-SVmLWffB7GF+Bu0tj5fIvQVMRh6uV3u2G3rC4cVH2Gw=";
16   };
18   nativeBuildInputs = [ which ocaml findlib ];
20   strictDeps = true;
22   preInstall = ''
23     mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs
24   '';
26   meta = with lib; {
27     description = "An OCaml library for reading, writing and modifying PDF files";
28     homepage = "https://github.com/johnwhitington/camlpdf";
29     license = licenses.lgpl21Plus;
30     maintainers = with maintainers; [vbgl];
31   };