cf3f6e7a7d
GitOrigin-RevId: 24eb3f87fc610f18de7076aee7c5a84ac5591e3e
14 lines
280 B
Nix
14 lines
280 B
Nix
{ lib, buildDunePackage, cstruct, lwt }:
|
|
|
|
if !lib.versionAtLeast (cstruct.version or "1") "3"
|
|
then cstruct
|
|
else
|
|
|
|
buildDunePackage {
|
|
pname = "cstruct-lwt";
|
|
inherit (cstruct) version src useDune2 meta;
|
|
|
|
minimumOCamlVersion = "4.02";
|
|
|
|
propagatedBuildInputs = [ cstruct lwt ];
|
|
}
|