2023-08-04 22:07:22 +00:00
|
|
|
{ buildDunePackage, camlp-streams, xenstore_transport, xenstore, lwt }:
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "xenstore-tool";
|
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
inherit (xenstore_transport) src version;
|
2021-02-05 17:12:51 +00:00
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace cli/dune --replace 'libraries ' 'libraries camlp-streams '
|
|
|
|
'';
|
2023-03-30 22:05:00 +00:00
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
buildInputs = [ camlp-streams xenstore_transport xenstore lwt ];
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
meta = xenstore_transport.meta // {
|
|
|
|
description = "Command line tool for interfacing with xenstore";
|
|
|
|
};
|
|
|
|
}
|