git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
17 lines
452 B
Nix
17 lines
452 B
Nix
{ buildDunePackage, camlp-streams, xenstore_transport, xenstore, lwt }:
|
|
|
|
buildDunePackage {
|
|
pname = "xenstore-tool";
|
|
|
|
inherit (xenstore_transport) src version;
|
|
|
|
postPatch = ''
|
|
substituteInPlace cli/dune --replace 'libraries ' 'libraries camlp-streams '
|
|
'';
|
|
|
|
buildInputs = [ camlp-streams xenstore_transport xenstore lwt ];
|
|
|
|
meta = xenstore_transport.meta // {
|
|
description = "Command line tool for interfacing with xenstore";
|
|
};
|
|
}
|