mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
12 lines
224 B
Nix
12 lines
224 B
Nix
{ buildDunePackage, pgocaml, ppx_optcomp }:
|
|
|
|
buildDunePackage {
|
|
pname = "pgocaml_ppx";
|
|
inherit (pgocaml) src version meta;
|
|
|
|
duneVersion = "3";
|
|
|
|
buildInputs = [ ppx_optcomp ];
|
|
propagatedBuildInputs = [ pgocaml ];
|
|
}
|