summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet/async-rpc-kernel.nix
blob: 70780ee385fa6413cc12289f87d8063572fc6c10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 {
  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 ];
  };
}