summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/cpdf/default.nix
blob: d29136dd434e52ff9c59a83a6db6b1f09e1b3d77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ 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 ];
  };
}