about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-01-17 12:45:33 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2021-01-24 17:38:11 +0100
commit25ab7218c8078a722ebba7aa031051f0044a33ce (patch)
treeeda1a29f4b992dbdc2b51c9e927a819f56dd81e7 /pkgs/development/ocaml-modules
parent34457e2fc6659adc875d132e19ff71c95d05b016 (diff)
downloadnixlib-25ab7218c8078a722ebba7aa031051f0044a33ce.tar
nixlib-25ab7218c8078a722ebba7aa031051f0044a33ce.tar.gz
nixlib-25ab7218c8078a722ebba7aa031051f0044a33ce.tar.bz2
nixlib-25ab7218c8078a722ebba7aa031051f0044a33ce.tar.lz
nixlib-25ab7218c8078a722ebba7aa031051f0044a33ce.tar.xz
nixlib-25ab7218c8078a722ebba7aa031051f0044a33ce.tar.zst
nixlib-25ab7218c8078a722ebba7aa031051f0044a33ce.zip
ocamlPackages.xenstore-tool: init at 1.3.0
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/xenstore-tool/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/xenstore-tool/default.nix b/pkgs/development/ocaml-modules/xenstore-tool/default.nix
new file mode 100644
index 000000000000..34f32e4f117c
--- /dev/null
+++ b/pkgs/development/ocaml-modules/xenstore-tool/default.nix
@@ -0,0 +1,13 @@
+{ buildDunePackage, xenstore_transport, xenstore, lwt }:
+
+buildDunePackage {
+  pname = "xenstore-tool";
+
+  inherit (xenstore_transport) src version useDune2 minimumOCamlVersion;
+
+  buildInputs = [ xenstore_transport xenstore lwt ];
+
+  meta = xenstore_transport.meta // {
+    description = "Command line tool for interfacing with xenstore";
+  };
+}