a425ba4985
GitOrigin-RevId: 5b091d4fbe3b7b7493c3b46fe0842e4b30ea24b3
14 lines
261 B
Nix
14 lines
261 B
Nix
{ buildDunePackage, ocf, ppxlib }:
|
|
|
|
buildDunePackage {
|
|
pname = "ocf_ppx";
|
|
minimalOCamlVersion = "4.11";
|
|
|
|
inherit (ocf) src version useDune2;
|
|
|
|
buildInputs = [ ppxlib ocf ];
|
|
|
|
meta = ocf.meta // {
|
|
description = "Preprocessor for Ocf library";
|
|
};
|
|
}
|