summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ppx_deriving_rpc/default.nix
blob: 7746200d4ff4fb61e7a201136f6574bbb4739e36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 ];
  };
}