forked from mirrors/nixpkgs
12 lines
247 B
Nix
12 lines
247 B
Nix
{ buildDunePackage, cstruct, ppx_tools_versioned }:
|
|
|
|
buildDunePackage {
|
|
pname = "ppx_cstruct";
|
|
inherit (cstruct) version src meta;
|
|
|
|
minimumOCamlVersion = "4.02";
|
|
|
|
buildInputs = [ ppx_tools_versioned ];
|
|
propagatedBuildInputs = [ cstruct ];
|
|
}
|