2020-04-24 23:36:52 +00:00
|
|
|
{ lib, buildDunePackage, cstruct }:
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
if lib.versionOlder (cstruct.version or "1") "3"
|
2020-04-24 23:36:52 +00:00
|
|
|
then cstruct
|
|
|
|
else
|
|
|
|
|
|
|
|
buildDunePackage {
|
2021-02-05 17:12:51 +00:00
|
|
|
pname = "cstruct-unix";
|
|
|
|
inherit (cstruct) version src useDune2 meta;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
minimumOCamlVersion = "4.06";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
propagatedBuildInputs = [ cstruct ];
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|