forked from mirrors/nixpkgs
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
19 lines
401 B
Nix
19 lines
401 B
Nix
{ lib, buildDunePackage, rpclib
|
|
, lwt
|
|
, alcotest-lwt, ppx_deriving_rpc, yojson
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "rpclib-lwt";
|
|
inherit (rpclib) version useDune2 src;
|
|
|
|
propagatedBuildInputs = [ lwt rpclib ];
|
|
|
|
nativeCheckInputs = [ alcotest-lwt ppx_deriving_rpc yojson ];
|
|
doCheck = true;
|
|
|
|
meta = rpclib.meta // {
|
|
description = "A library to deal with RPCs in OCaml - Lwt interface";
|
|
};
|
|
}
|