15 lines
343 B
Nix
15 lines
343 B
Nix
{ lib, buildDunePackage, cstruct, sexplib, ppx_tools_versioned, ppxlib }:
|
|
|
|
if !lib.versionAtLeast (cstruct.version or "1") "3"
|
|
then cstruct
|
|
else
|
|
|
|
buildDunePackage {
|
|
pname = "ppx_cstruct";
|
|
inherit (cstruct) version src useDune2 meta;
|
|
|
|
minimumOCamlVersion = "4.03";
|
|
|
|
propagatedBuildInputs = [ cstruct ppx_tools_versioned ppxlib sexplib ];
|
|
}
|