ocamlPackages.ppx_deriving_rpc: init at 5.9.0

This commit is contained in:
Vasiliy Yorkin 2019-09-18 09:42:41 +03:00 committed by Vincent Laporte
parent d69bc56e69
commit 0cf81af50c
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ lib, buildDunePackage, rpclib, ppxfind, ppx_deriving, cppo }:
buildDunePackage rec {
pname = "ppx_deriving_rpc";
inherit (rpclib) version src;
buildInputs = [ ppxfind cppo ];
propagatedBuildInputs = [ rpclib ppx_deriving ];
meta = with lib; {
homepage = "https://github.com/mirage/ocaml-rpc";
description = "Ppx deriver for ocaml-rpc";
license = licenses.isc;
maintainers = [ maintainers.vyorkin ];
};
}

View file

@ -698,6 +698,8 @@ let
ppx_deriving_protobuf = callPackage ../development/ocaml-modules/ppx_deriving_protobuf {};
ppx_deriving_rpc = callPackage ../development/ocaml-modules/ppx_deriving_rpc {};
ppx_deriving_yojson = callPackage ../development/ocaml-modules/ppx_deriving_yojson {};
ppx_gen_rec = callPackage ../development/ocaml-modules/ppx_gen_rec {};