summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet/async-kernel.nix
blob: 4d7213a8603e35731034d953064cff7474e0a8a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, buildOcamlJane, fetchurl, core_kernel,
 bin_prot, fieldslib,
 sexplib, herelib, opam, js_build_tools, ocaml_oasis}:

buildOcamlJane rec {
  name = "async_kernel";
  hash = "1n6ifbrq6q6hq8bxh6b9vhg11mv9r6jgp1b7vfw7mh5s2nrd4b60";
  propagatedBuildInputs = [ core_kernel bin_prot fieldslib herelib sexplib ];

  meta = with stdenv.lib; {
    homepage = https://github.com/janestreet/async_kernel;
    description = "Jane Street Capital's asynchronous execution library (core) ";
    license = licenses.asl20;
    maintainers = [ maintainers.maurer maintainers.ericbmerritt ];
  };
}