mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 17:14:33 +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 ];
|
|
}
|