mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
290a5d916e
Based on "problems" from repology: https://repology.org/repository/nix_unstable/problems Mostly simple changes to reflect redirects.
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, result }:
|
|
|
|
let
|
|
pname = "cmdliner";
|
|
in
|
|
|
|
assert stdenv.lib.versionAtLeast ocaml.version "4.01.0";
|
|
|
|
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
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ocaml${ocaml.version}-${pname}-${version}";
|
|
inherit (param) version;
|
|
|
|
src = fetchurl {
|
|
url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz";
|
|
inherit (param) sha256;
|
|
};
|
|
|
|
nativeBuildInputs = [ ocamlbuild topkg ];
|
|
buildInputs = [ ocaml findlib ];
|
|
propagatedBuildInputs = [ result ];
|
|
|
|
inherit (topkg) buildPhase installPhase;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://erratique.ch/software/cmdliner;
|
|
description = "An OCaml module for the declarative definition of command line interfaces";
|
|
license = licenses.bsd3;
|
|
platforms = ocaml.meta.platforms or [];
|
|
maintainers = [ maintainers.vbgl ];
|
|
};
|
|
}
|