about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet
diff options
context:
space:
mode:
authorMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 16:15:07 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 16:37:21 -0400
commit1de9488674a330f61cb6beac300e23564c16d5aa (patch)
tree1ccc085f7d67a538568c30966a505354699ce8d8 /pkgs/development/ocaml-modules/janestreet
parent4e159d70643287c318b10f78b9f0b8cb0e64d903 (diff)
downloadnixlib-1de9488674a330f61cb6beac300e23564c16d5aa.tar
nixlib-1de9488674a330f61cb6beac300e23564c16d5aa.tar.gz
nixlib-1de9488674a330f61cb6beac300e23564c16d5aa.tar.bz2
nixlib-1de9488674a330f61cb6beac300e23564c16d5aa.tar.lz
nixlib-1de9488674a330f61cb6beac300e23564c16d5aa.tar.xz
nixlib-1de9488674a330f61cb6beac300e23564c16d5aa.tar.zst
nixlib-1de9488674a330f61cb6beac300e23564c16d5aa.zip
async_rpc_kernel: init at 113.33.03
Diffstat (limited to 'pkgs/development/ocaml-modules/janestreet')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/async-rpc-kernel.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/async-rpc-kernel.nix b/pkgs/development/ocaml-modules/janestreet/async-rpc-kernel.nix
new file mode 100644
index 000000000000..1f5ff6b9646f
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/async-rpc-kernel.nix
@@ -0,0 +1,18 @@
+{stdenv, buildOcamlJane, async_kernel, bin_prot, core_kernel,
+ fieldslib, ppx_assert, ppx_bench, ppx_driver, ppx_expect, ppx_inline_test,
+ ppx_jane, sexplib, typerep, variantslib}:
+
+buildOcamlJane rec {
+  name = "async_rpc_kernel";
+  hash = "0pvys7giqix1nfidw1f4i3r94cf03ba1mvhadpm2zpdir3av91sw";
+  propagatedBuildInputs = [ async_kernel bin_prot core_kernel fieldslib
+    ppx_assert ppx_bench ppx_driver ppx_expect ppx_inline_test ppx_jane
+    sexplib typerep variantslib ];
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/janestreet/async_rpc_kernel;
+    description = "Platform-independent core of Async RPC library";
+    license = licenses.asl20;
+    maintainers = [ maintainers.maurer ];
+  };
+}