about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/pgocaml/ppx.nix
blob: 1b76f9a577e7e0d40c92a23f87891f892c2f18f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ buildDunePackage, pgocaml, ppx_optcomp }:

buildDunePackage {
  pname = "pgocaml_ppx";
  inherit (pgocaml) src version meta;

  buildInputs = [ ppx_optcomp ];
  propagatedBuildInputs = [ pgocaml ];
}