2023-07-24 05:14:55 +00:00
|
|
|
{ buildDunePackage, camlp-streams, xenstore_transport, xenstore, lwt }:
|
2021-01-17 11:45:33 +00:00
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "xenstore-tool";
|
|
|
|
|
2022-12-12 06:54:50 +00:00
|
|
|
inherit (xenstore_transport) src version;
|
2021-01-17 11:45:33 +00:00
|
|
|
|
2023-07-24 05:14:55 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace cli/dune --replace 'libraries ' 'libraries camlp-streams '
|
|
|
|
'';
|
2023-03-28 06:57:41 +00:00
|
|
|
|
2023-07-24 05:14:55 +00:00
|
|
|
buildInputs = [ camlp-streams xenstore_transport xenstore lwt ];
|
2021-01-17 11:45:33 +00:00
|
|
|
|
|
|
|
meta = xenstore_transport.meta // {
|
|
|
|
description = "Command line tool for interfacing with xenstore";
|
|
|
|
};
|
|
|
|
}
|