summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-01-17 12:44:21 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2021-01-24 17:38:11 +0100
commit148ca8c904ff703ab7a4a22c92cd6907692543b1 (patch)
tree5e026fd0fa2a4a863d6bf1e8e738a94e9144f085 /pkgs
parentd91aad5c8f3a7456b56a8c7ba79b48f6e9031db5 (diff)
downloadnixpkgs-148ca8c904ff703ab7a4a22c92cd6907692543b1.tar
nixpkgs-148ca8c904ff703ab7a4a22c92cd6907692543b1.tar.gz
nixpkgs-148ca8c904ff703ab7a4a22c92cd6907692543b1.tar.bz2
nixpkgs-148ca8c904ff703ab7a4a22c92cd6907692543b1.tar.lz
nixpkgs-148ca8c904ff703ab7a4a22c92cd6907692543b1.tar.xz
nixpkgs-148ca8c904ff703ab7a4a22c92cd6907692543b1.tar.zst
nixpkgs-148ca8c904ff703ab7a4a22c92cd6907692543b1.zip
ocamlPackages.xenstore: init at 2.1.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/xenstore/default.nix30
-rw-r--r--pkgs/top-level/ocaml-packages.nix2
2 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/xenstore/default.nix b/pkgs/development/ocaml-modules/xenstore/default.nix
new file mode 100644
index 00000000000..666106fdb17
--- /dev/null
+++ b/pkgs/development/ocaml-modules/xenstore/default.nix
@@ -0,0 +1,30 @@
+{ lib, buildDunePackage, fetchurl
+, cstruct, ppx_cstruct, lwt, ounit
+}:
+
+buildDunePackage rec {
+  pname = "xenstore";
+  version = "2.1.1";
+
+  minimumOCamlVersion = "4.04";
+
+  useDune2 = true;
+
+  src = fetchurl {
+    url = "https://github.com/mirage/ocaml-xenstore/releases/download/${version}/xenstore-${version}.tbz";
+    sha256 = "283814ea21adc345c4d59cfcb17b2f7c1185004ecaecc3871557c961874c84f5";
+  };
+
+  nativeBuildInputs = [ ppx_cstruct ];
+  propagatedBuildInputs = [ cstruct lwt ];
+
+  doCheck = true;
+  checkInputs = [ ounit ];
+
+  meta = with lib; {
+    description = "Xenstore protocol in pure OCaml";
+    license = licenses.lgpl21Only;
+    maintainers = [ maintainers.sternenseemann ];
+    homepage = "https://github.com/mirage/ocaml-xenstore";
+  };
+}
diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix
index e0812b7c29c..de345c515ad 100644
--- a/pkgs/top-level/ocaml-packages.nix
+++ b/pkgs/top-level/ocaml-packages.nix
@@ -1091,6 +1091,8 @@ let
 
     x509 = callPackage ../development/ocaml-modules/x509 { };
 
+    xenstore = callPackage ../development/ocaml-modules/xenstore { };
+
     xmlm = callPackage ../development/ocaml-modules/xmlm { };
 
     xml-light = callPackage ../development/ocaml-modules/xml-light { };