mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
async_rpc_kernel: init at 113.33.03
This commit is contained in:
parent
4e159d7064
commit
1de9488674
2 changed files with 20 additions and 0 deletions
|
@ -0,0 +1,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 rec {
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -5615,6 +5615,8 @@ in
|
|||
then callPackage ../development/ocaml-modules/janestreet/async-kernel.nix {}
|
||||
else async_kernel_p4;
|
||||
|
||||
async_rpc_kernel = callPackage ../development/ocaml-modules/janestreet/async-rpc-kernel.nix {};
|
||||
|
||||
async_unix =
|
||||
if lib.versionOlder "4.02" ocaml_version
|
||||
then callPackage ../development/ocaml-modules/janestreet/async-unix.nix {}
|
||||
|
|
Loading…
Reference in a new issue