ocamlPackages.opam-state: init at 2.0.7
This commit is contained in:
parent
b604e4aedd
commit
c4636f6101
2 changed files with 23 additions and 0 deletions
19
pkgs/development/ocaml-modules/opam-state/default.nix
Normal file
19
pkgs/development/ocaml-modules/opam-state/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ lib, buildDunePackage, unzip, opam, opam-repository }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "opam-state";
|
||||
|
||||
inherit (opam) src version;
|
||||
|
||||
# get rid of check for curl at configure time
|
||||
# opam-state does not call curl at run time
|
||||
configureFlags = [ "--disable-checks" ];
|
||||
|
||||
nativeBuildInputs = [ unzip ];
|
||||
propagatedBuildInputs = [ opam-repository ];
|
||||
|
||||
meta = opam.meta // {
|
||||
description = "OPAM development library handling the ~/.opam hierarchy, repository and switch states";
|
||||
maintainers = with lib.maintainers; [ sternenseemann ];
|
||||
};
|
||||
}
|
|
@ -690,6 +690,10 @@ let
|
|||
inherit (pkgs) unzip;
|
||||
};
|
||||
|
||||
opam-state = callPackage ../development/ocaml-modules/opam-state {
|
||||
inherit (pkgs) unzip;
|
||||
};
|
||||
|
||||
opium = callPackage ../development/ocaml-modules/opium { };
|
||||
|
||||
opium_kernel = callPackage ../development/ocaml-modules/opium_kernel { };
|
||||
|
|
Loading…
Reference in a new issue