1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/development/ocaml-modules/cstruct/lwt.nix
2023-03-28 11:26:16 +02:00

16 lines
306 B
Nix

{ 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 ];
}