opam-installer: init at 2.0.7
This commit is contained in:
parent
a648a07c19
commit
f0a821afc5
17
pkgs/development/tools/ocaml/opam/installer.nix
Normal file
17
pkgs/development/tools/ocaml/opam/installer.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user