2018-12-10 19:59:32 +00:00
|
|
|
{ lib, buildDunePackage, cstruct, lwt }:
|
|
|
|
|
2022-04-25 20:35:24 +00:00
|
|
|
if lib.versionOlder (cstruct.version or "1") "3"
|
2018-12-10 19:59:32 +00:00
|
|
|
then cstruct
|
|
|
|
else
|
2017-11-27 19:08:40 +00:00
|
|
|
|
2022-10-11 06:50:54 +00:00
|
|
|
buildDunePackage {
|
|
|
|
pname = "cstruct-lwt";
|
|
|
|
inherit (cstruct) version src meta;
|
2017-11-27 19:08:40 +00:00
|
|
|
|
2022-10-11 06:50:54 +00:00
|
|
|
minimalOCamlVersion = "4.08";
|
2023-03-28 06:58:02 +00:00
|
|
|
duneVersion = "3";
|
2017-11-27 19:08:40 +00:00
|
|
|
|
2022-10-11 06:50:54 +00:00
|
|
|
propagatedBuildInputs = [ cstruct lwt ];
|
|
|
|
}
|