mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 22:45:08 +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 ];
|
|
}
|