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
|
|
|
|
2016-10-05 08:32:30 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-08-22 13:43:23 +01:00
|
|
|
name = "ocaml-${pname}-${version}";
|
2017-09-08 05:09:11 +01:00
|
|
|
version = "1.0.2";
|
2014-08-22 13:43:23 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz";
|
2017-09-08 05:09:11 +01:00
|
|
|
sha256 = "18jqphjiifljlh9jg8zpl6310p3iwyaqphdkmf89acyaix0s4kj1";
|
2014-08-22 13:43:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
unpackCmd = "tar xjf $src";
|
2017-09-08 05:09:11 +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; {
|
|
|
|
homepage = http://erratique.ch/software/cmdliner;
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|