mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 21:24:42 +00:00
30 lines
414 B
Nix
30 lines
414 B
Nix
{
|
|
buildDunePackage,
|
|
rpclib,
|
|
lwt,
|
|
alcotest-lwt,
|
|
ppx_deriving_rpc,
|
|
yojson,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "rpclib-lwt";
|
|
inherit (rpclib) version src;
|
|
|
|
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";
|
|
};
|
|
}
|