mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
10 lines
202 B
Nix
10 lines
202 B
Nix
{ buildDunePackage, pgocaml, ppx_optcomp }:
|
|
|
|
buildDunePackage {
|
|
pname = "pgocaml_ppx";
|
|
inherit (pgocaml) src version meta;
|
|
|
|
buildInputs = [ ppx_optcomp ];
|
|
propagatedBuildInputs = [ pgocaml ];
|
|
}
|