2017-12-14 08:36:29 +01:00
|
|
|
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, result }:
|
2014-08-22 14:43:23 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
pname = "cmdliner";
|
|
|
|
in
|
2014-09-21 12:02:55 +02:00
|
|
|
|
2017-09-08 06:09:11 +02:00
|
|
|
assert stdenv.lib.versionAtLeast ocaml.version "4.01.0";
|
2014-09-21 12:02:55 +02:00
|
|
|
|
2016-10-05 09:32:30 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-08-22 14:43:23 +02:00
|
|
|
name = "ocaml-${pname}-${version}";
|
2017-09-08 06:09:11 +02:00
|
|
|
version = "1.0.2";
|
2014-08-22 14:43:23 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz";
|
2017-09-08 06:09:11 +02:00
|
|
|
sha256 = "18jqphjiifljlh9jg8zpl6310p3iwyaqphdkmf89acyaix0s4kj1";
|
2014-08-22 14:43:23 +02:00
|
|
|
};
|
|
|
|
|
2017-12-14 08:36:29 +01:00
|
|
|
nativeBuildInputs = [ ocamlbuild topkg ];
|
2017-05-28 22:38:23 +02:00
|
|
|
buildInputs = [ ocaml findlib ];
|
2017-09-08 06:09:11 +02:00
|
|
|
propagatedBuildInputs = [ result ];
|
2014-08-22 14:43:23 +02:00
|
|
|
|
2017-12-14 08:36:29 +01:00
|
|
|
inherit (topkg) buildPhase installPhase;
|
2014-08-22 14:43:23 +02:00
|
|
|
|
|
|
|
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;
|
2015-12-24 18:49:07 +01:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2017-05-28 22:38:23 +02:00
|
|
|
maintainers = [ maintainers.vbgl ];
|
2014-08-22 14:43:23 +02:00
|
|
|
};
|
|
|
|
}
|