a3d4720129
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
13 lines
318 B
Nix
13 lines
318 B
Nix
{ buildDunePackage, xenstore_transport, xenstore, lwt }:
|
|
|
|
buildDunePackage {
|
|
pname = "xenstore-tool";
|
|
|
|
inherit (xenstore_transport) src version;
|
|
|
|
buildInputs = [ xenstore_transport xenstore lwt ];
|
|
|
|
meta = xenstore_transport.meta // {
|
|
description = "Command line tool for interfacing with xenstore";
|
|
};
|
|
}
|