nixpkgs/pkgs/development/ocaml-modules/ppx_deriving_rpc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
532 B
Nix
Raw Normal View History

2020-11-21 08:01:01 +00:00
{ lib, buildDunePackage, rpclib, alcotest, ppxlib, ppx_deriving, yojson }:
buildDunePackage rec {
pname = "ppx_deriving_rpc";
2023-02-08 06:07:19 +00:00
inherit (rpclib) version src;
2023-02-08 06:07:19 +00:00
minimalOCamlVersion = "4.08";
duneVersion = "3";
2020-11-21 08:01:01 +00:00
propagatedBuildInputs = [ ppxlib rpclib ppx_deriving ];
checkInputs = [ alcotest yojson ];
2020-11-21 08:01:01 +00:00
doCheck = true;
meta = with lib; {
homepage = "https://github.com/mirage/ocaml-rpc";
description = "Ppx deriver for ocaml-rpc";
license = licenses.isc;
maintainers = [ maintainers.vyorkin ];
};
}