2017-12-14 07:36:29 +00:00
|
|
|
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, result }:
|
2014-08-22 13:43:23 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
pname = "cmdliner";
|
|
|
|
in
|
2014-09-21 11:02:55 +01:00
|
|
|
|
2017-09-08 05:09:11 +01:00
|
|
|
assert stdenv.lib.versionAtLeast ocaml.version "4.01.0";
|
2014-09-21 11:02:55 +01:00
|
|
|
|
2019-01-09 15:04:18 +00:00
|
|
|
let param =
|
|
|
|
if stdenv.lib.versionAtLeast ocaml.version "4.03" then {
|
|
|
|
version = "1.0.3";
|
|
|
|
sha256 = "0g3w4hvc1cx9x2yp5aqn6m2rl8lf9x1dn754hfq8m1sc1102lxna";
|
|
|
|
} else {
|
|
|
|
version = "1.0.2";
|
|
|
|
sha256 = "18jqphjiifljlh9jg8zpl6310p3iwyaqphdkmf89acyaix0s4kj1";
|
|
|
|
}
|
|
|
|
; in
|
|
|
|
|
2016-10-05 08:32:30 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-01-09 15:04:18 +00:00
|
|
|
name = "ocaml${ocaml.version}-${pname}-${version}";
|
|
|
|
inherit (param) version;
|
2014-08-22 13:43:23 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz";
|
2019-01-09 15:04:18 +00:00
|
|
|
inherit (param) sha256;
|
2014-08-22 13:43:23 +01:00
|
|
|
};
|
|
|
|
|
2017-12-14 07:36:29 +00:00
|
|
|
nativeBuildInputs = [ ocamlbuild topkg ];
|
2017-05-28 21:38:23 +01:00
|
|
|
buildInputs = [ ocaml findlib ];
|
2017-09-08 05:09:11 +01:00
|
|
|
propagatedBuildInputs = [ result ];
|
2014-08-22 13:43:23 +01:00
|
|
|
|
2017-12-14 07:36:29 +00:00
|
|
|
inherit (topkg) buildPhase installPhase;
|
2014-08-22 13:43:23 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-04-15 00:25:45 +01:00
|
|
|
homepage = https://erratique.ch/software/cmdliner;
|
2014-08-22 13:43:23 +01:00
|
|
|
description = "An OCaml module for the declarative definition of command line interfaces";
|
|
|
|
license = licenses.bsd3;
|
2015-12-24 17:49:07 +00:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2017-05-28 21:38:23 +01:00
|
|
|
maintainers = [ maintainers.vbgl ];
|
2014-08-22 13:43:23 +01:00
|
|
|
};
|
|
|
|
}
|