nixpkgs/pkgs/development/ocaml-modules/pgocaml/ppx.nix

9 lines
269 B
Nix
Raw Normal View History

2020-10-15 07:11:20 +01:00
{ buildDunePackage, pgocaml, ppx_optcomp, ppx_tools, ppx_tools_versioned, rresult }:
2020-02-19 16:22:51 +00:00
buildDunePackage {
pname = "pgocaml_ppx";
2020-10-15 07:11:20 +01:00
inherit (pgocaml) src version useDune2 meta;
2020-02-19 16:22:51 +00:00
2020-10-15 07:11:20 +01:00
propagatedBuildInputs = [ pgocaml ppx_optcomp ppx_tools ppx_tools_versioned rresult ];
2020-02-19 16:22:51 +00:00
}