Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
333 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
cstruct,
lwt,
}:
if lib.versionOlder (cstruct.version or "1") "3" then
cstruct
else
buildDunePackage {
pname = "cstruct-lwt";
inherit (cstruct) version src meta;
minimalOCamlVersion = "4.08";
duneVersion = "3";
propagatedBuildInputs = [
cstruct
lwt
];
}