nixpkgs/pkgs/development/ocaml-modules/janestreet/async-rpc-kernel.nix
2021-01-12 16:33:18 +01:00

19 lines
703 B
Nix

{lib, 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 lib; {
homepage = "https://github.com/janestreet/async_rpc_kernel";
description = "Platform-independent core of Async RPC library";
license = licenses.asl20;
maintainers = [ maintainers.maurer ];
};
}