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:08:02 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 16:37:21 -0400
commit4e159d70643287c318b10f78b9f0b8cb0e64d903 (patch)
tree2344803818857e2557b7a5b2559d39b266baaed4 /pkgs/development/ocaml-modules/janestreet
parent6f998593a9937027eee317a80a091a46b80bb9b4 (diff)
downloadnixlib-4e159d70643287c318b10f78b9f0b8cb0e64d903.tar
nixlib-4e159d70643287c318b10f78b9f0b8cb0e64d903.tar.gz
nixlib-4e159d70643287c318b10f78b9f0b8cb0e64d903.tar.bz2
nixlib-4e159d70643287c318b10f78b9f0b8cb0e64d903.tar.lz
nixlib-4e159d70643287c318b10f78b9f0b8cb0e64d903.tar.xz
nixlib-4e159d70643287c318b10f78b9f0b8cb0e64d903.tar.zst
nixlib-4e159d70643287c318b10f78b9f0b8cb0e64d903.zip
async_unix: 112.24.00 -> 112.24.00/113.33.03
PPX/P4 split
Diffstat (limited to 'pkgs/development/ocaml-modules/janestreet')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/async-unix.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/async-unix.nix b/pkgs/development/ocaml-modules/janestreet/async-unix.nix
new file mode 100644
index 000000000000..5621d2ec704b
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/async-unix.nix
@@ -0,0 +1,17 @@
+{stdenv, buildOcamlJane, fetchurl, async_kernel,
+ bin_prot, comparelib, core, fieldslib, herelib,
+ pipebang, sexplib}:
+
+buildOcamlJane rec {
+  name = "async_unix";
+  hash = "03ng7f0s22wwzspakiqj442vs1a7yf834109jcj9r3g1awwfhcy7";
+  propagatedBuildInputs = [ async_kernel core bin_prot comparelib
+                            fieldslib herelib pipebang sexplib ];
+
+  meta = with stdenv.lib; {
+   homepage = https://github.com/janestreet/async_unix;
+   description = "Jane Street Capital's asynchronous execution library (unix)";
+   license = licenses.asl20;
+   maintainers = [ maintainers.maurer maintainers.ericbmerritt ];
+  };
+}