ocamlPackages.opam-state: init at 2.0.7

This commit is contained in:
sternenseemann 2020-05-20 23:27:46 +02:00 committed by Vincent Laporte
parent b604e4aedd
commit c4636f6101
2 changed files with 23 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };