ocamlPackages.rpclib-lwt: init at 8.0.0

This commit is contained in:
Vincent Laporte
2020-11-28 08:22:08 +01:00
committed by Vincent Laporte
parent d6dfd173f9
commit 8256fc2da5
2 changed files with 20 additions and 0 deletions
@@ -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";
};
}