Adds ocaml-cpdf
A range of tools to modify PDF files and a corresponding OCaml library Homepage: http://www.coherentpdf.com/
This commit is contained in:
parent
14cd6ae2a9
commit
0b9e2f8798
35
pkgs/development/ocaml-modules/cpdf/default.nix
Normal file
35
pkgs/development/ocaml-modules/cpdf/default.nix
Normal file
@ -0,0 +1,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;
|
||||||
|
description = "PDF Command Line Tools";
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
||||||
|
};
|
||||||
|
}
|
@ -3767,6 +3767,8 @@ let
|
|||||||
|
|
||||||
config-file = callPackage ../development/ocaml-modules/config-file { };
|
config-file = callPackage ../development/ocaml-modules/config-file { };
|
||||||
|
|
||||||
|
cpdf = callPackage ../development/ocaml-modules/cpdf { };
|
||||||
|
|
||||||
cppo = callPackage ../development/tools/ocaml/cppo { };
|
cppo = callPackage ../development/tools/ocaml/cppo { };
|
||||||
|
|
||||||
cryptokit = callPackage ../development/ocaml-modules/cryptokit { };
|
cryptokit = callPackage ../development/ocaml-modules/cryptokit { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user