opam-installer: init at 2.0.7

This commit is contained in:
sternenseemann 2020-12-06 20:49:59 +01:00 committed by Vincent Laporte
parent a648a07c19
commit f0a821afc5
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ lib, unzip, opam, ocamlPackages }:
ocamlPackages.buildDunePackage {
pname = "opam-installer";
useDune2 = true;
inherit (opam) version src;
nativeBuildInputs = [ unzip ];
configureFlags = [ "--disable-checks" "--prefix=$out" ];
buildInputs = with ocamlPackages; [ opam-format cmdliner ];
meta = opam.meta // {
description = "Handle (un)installation from opam install files";
};
}

View file

@ -10566,6 +10566,8 @@ in
inherit (ocaml-ng.ocamlPackages_4_05) ocaml;
};
opam-installer = callPackage ../development/tools/ocaml/opam/installer.nix { };
open-watcom-bin = callPackage ../development/compilers/open-watcom-bin { };
pforth = callPackage ../development/compilers/pforth {};