Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
435 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
rpclib,
lwt,
alcotest-lwt,
ppx_deriving_rpc,
yojson,
}:
buildDunePackage {
pname = "rpclib-lwt";
inherit (rpclib) version src;
duneVersion = "3";
propagatedBuildInputs = [
lwt
rpclib
];
checkInputs = [
alcotest-lwt
ppx_deriving_rpc
yojson
];
doCheck = true;
meta = rpclib.meta // {
description = "Library to deal with RPCs in OCaml - Lwt interface";
};
}