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:34:33 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 16:37:21 -0400
commit1d0e6ba2df81ad5d9fa42c9181da945a8b1abae3 (patch)
tree812fb7251bbb3e1209c2893e394f372481fb0215 /pkgs/development/ocaml-modules/janestreet
parent32367919c4e8dad0983034a1bb716e709267fd75 (diff)
downloadnixlib-1d0e6ba2df81ad5d9fa42c9181da945a8b1abae3.tar
nixlib-1d0e6ba2df81ad5d9fa42c9181da945a8b1abae3.tar.gz
nixlib-1d0e6ba2df81ad5d9fa42c9181da945a8b1abae3.tar.bz2
nixlib-1d0e6ba2df81ad5d9fa42c9181da945a8b1abae3.tar.lz
nixlib-1d0e6ba2df81ad5d9fa42c9181da945a8b1abae3.tar.xz
nixlib-1d0e6ba2df81ad5d9fa42c9181da945a8b1abae3.tar.zst
nixlib-1d0e6ba2df81ad5d9fa42c9181da945a8b1abae3.zip
async: 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.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/async.nix b/pkgs/development/ocaml-modules/janestreet/async.nix
new file mode 100644
index 000000000000..2e776e273be1
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/async.nix
@@ -0,0 +1,16 @@
+{stdenv, buildOcamlJane, fetchurl, async_kernel,
+ async_unix, async_extra}:
+
+buildOcamlJane rec {
+  name = "async";
+  version = "113.33.03";
+  hash = "0wyspkp8k833fh03r3h016nbfn6kjfhvb2bg42cly6agcak59fmr";
+  propagatedBuildInputs = [ async_kernel async_unix async_extra ];
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/janestreet/async;
+    description = "Jane Street Capital's asynchronous execution library";
+    license = licenses.asl20;
+    maintainers = [ maintainers.maurer maintainers.ericbmerritt ];
+  };
+}