ocamlPackages.xenstore-tool: init at 1.3.0

This commit is contained in:
sternenseemann 2021-01-17 12:45:33 +01:00 committed by Vincent Laporte
parent 34457e2fc6
commit 25ab7218c8
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ buildDunePackage, xenstore_transport, xenstore, lwt }:
buildDunePackage {
pname = "xenstore-tool";
inherit (xenstore_transport) src version useDune2 minimumOCamlVersion;
buildInputs = [ xenstore_transport xenstore lwt ];
meta = xenstore_transport.meta // {
description = "Command line tool for interfacing with xenstore";
};
}

View file

@ -1095,6 +1095,8 @@ let
xenstore_transport = callPackage ../development/ocaml-modules/xenstore_transport { };
xenstore-tool = callPackage ../development/ocaml-modules/xenstore-tool { };
xmlm = callPackage ../development/ocaml-modules/xmlm { };
xml-light = callPackage ../development/ocaml-modules/xml-light { };