ocamlPackages.rpclib-lwt: init at 8.0.0

This commit is contained in:
Vincent Laporte 2020-11-21 09:01:06 +01:00 committed by Vincent Laporte
parent d6dfd173f9
commit 8256fc2da5
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ lib, buildDunePackage, rpclib
, lwt
, alcotest-lwt, ppx_deriving_rpc, yojson
}:
buildDunePackage {
pname = "rpclib-lwt";
inherit (rpclib) version useDune2 src;
propagatedBuildInputs = [ lwt rpclib ];
checkInputs = [ alcotest-lwt ppx_deriving_rpc yojson ];
doCheck = true;
meta = rpclib.meta // {
description = "A library to deal with RPCs in OCaml - Lwt interface";
};
}

View file

@ -936,6 +936,8 @@ let
rpclib = callPackage ../development/ocaml-modules/rpclib { };
rpclib-lwt = callPackage ../development/ocaml-modules/rpclib/lwt.nix { };
rresult = callPackage ../development/ocaml-modules/rresult { };
safepass = callPackage ../development/ocaml-modules/safepass { };