ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / development / ocaml-modules / xenstore-tool / default.nix
blobdf61ab0eb491ec777aa4662d1a6e858e49cd73b1
2   buildDunePackage,
3   camlp-streams,
4   xenstore_transport,
5   xenstore,
6   lwt,
7 }:
9 buildDunePackage {
10   pname = "xenstore-tool";
12   inherit (xenstore_transport) src version;
14   postPatch = ''
15     substituteInPlace cli/dune --replace 'libraries ' 'libraries camlp-streams '
16   '';
18   buildInputs = [
19     camlp-streams
20     xenstore_transport
21     xenstore
22     lwt
23   ];
25   meta = xenstore_transport.meta // {
26     description = "Command line tool for interfacing with xenstore";
27   };