nixpkgs/pkgs/development/ocaml-modules/cmdliner/default.nix

43 lines
1.1 KiB
Nix
Raw Normal View History

2017-05-28 20:38:23 +00:00
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg, result }:
let
pname = "cmdliner";
in
2017-05-28 20:38:23 +00:00
assert stdenv.lib.versionAtLeast ocaml.version "4.01.0";
2016-10-05 07:32:30 +00:00
stdenv.mkDerivation rec {
name = "ocaml-${pname}-${version}";
2017-05-28 20:38:23 +00:00
version = "1.0.0";
src = fetchurl {
url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz";
2017-05-28 20:38:23 +00:00
sha256 = "1ryn7qis0izg0wcal8zdlikzzl689l75y6f4zc6blrm93y5agy9x";
};
unpackCmd = "tar xjf $src";
2017-05-28 20:38:23 +00:00
nativeBuildInputs = [ ocamlbuild opam topkg ];
buildInputs = [ ocaml findlib ];
propagatedBuildInputs = [ result ];
createFindlibDestdir = true;
2017-05-28 20:38:23 +00:00
buildPhase = ''
ocaml -I ${findlib}/lib/ocaml/${ocaml.version}/site-lib pkg/pkg.ml build
'';
installPhase = ''
opam-installer --script --prefix=$out | sh
2016-10-05 07:32:30 +00:00
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;
platforms = ocaml.meta.platforms or [];
2017-05-28 20:38:23 +00:00
maintainers = [ maintainers.vbgl ];
};
}