My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/rpclib/lwt.nix

18 lines
395 B

{ 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";
};
}