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

32 lines
877 B
Nix
Raw Normal View History

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