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/ppx_deriving_rpc/default.nix

21 lines
520 B

{ lib, buildDunePackage, rpclib, alcotest, ppxlib, ppx_deriving, yojson }:
buildDunePackage rec {
pname = "ppx_deriving_rpc";
inherit (rpclib) version useDune2 src;
minimumOCamlVersion = "4.08";
propagatedBuildInputs = [ ppxlib rpclib ppx_deriving ];
checkInputs = [ alcotest yojson ];
doCheck = true;
meta = with lib; {
homepage = "https://github.com/mirage/ocaml-rpc";
description = "Ppx deriver for ocaml-rpc";
license = licenses.isc;
maintainers = [ maintainers.vyorkin ];
};
}