biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / xenstore-tool / default.nix
blobe75a2036642fb29940eb6d1081364c88c66fad96
1 { buildDunePackage, camlp-streams, xenstore_transport, xenstore, lwt }:
3 buildDunePackage {
4   pname = "xenstore-tool";
6   inherit (xenstore_transport) src version;
8   postPatch = ''
9     substituteInPlace cli/dune --replace 'libraries ' 'libraries camlp-streams '
10   '';
12   buildInputs = [ camlp-streams xenstore_transport xenstore lwt ];
14   meta = xenstore_transport.meta // {
15     description = "Command line tool for interfacing with xenstore";
16   };