about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/rpclib/lwt.nix
blob: 1f97d7ff52d277ae188226ac9e84cb8230726224 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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";
  };
}