41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{stdenv, fetchurl, ocaml, findlib, opam}:
|
|
|
|
let
|
|
pname = "cmdliner";
|
|
version = "0.9.7";
|
|
ocaml_version = (builtins.parseDrvName ocaml.name).version;
|
|
in
|
|
|
|
assert stdenv.lib.versionAtLeast ocaml_version "4.00";
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "ocaml-${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz";
|
|
sha256 = "0ymzy1l6z85b6779lfxk179igfpf7rgfik70kr3c7lxmzwy8j6cw";
|
|
};
|
|
|
|
unpackCmd = "tar xjf $src";
|
|
buildInputs = [ ocaml findlib opam ];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
configurePhase = "ocaml pkg/git.ml";
|
|
buildPhase = "ocaml pkg/build.ml native=true native-dynlink=true";
|
|
installPhase = ''
|
|
opam-installer --script --prefix=$out ${pname}.install > install.sh
|
|
sh install.sh
|
|
ln -s $out/lib/${pname} $out/lib/ocaml/${ocaml_version}/site-lib/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://erratique.ch/software/cmdliner;
|
|
description = "An OCaml module for the declarative definition of command line interfaces";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.vbgl ];
|
|
platforms = ocaml.meta.platforms;
|
|
};
|
|
}
|