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

buildOcamlJane {
  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 ];
  };
}