biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / cstruct / lwt.nix
blob3aa70e5c9986d534527d950ff745468fe2befde0
1 { lib, buildDunePackage, cstruct, lwt }:
3 if lib.versionOlder (cstruct.version or "1") "3"
4 then cstruct
5 else
7   buildDunePackage {
8     pname = "cstruct-lwt";
9     inherit (cstruct) version src meta;
11     minimalOCamlVersion = "4.08";
12     duneVersion = "3";
14     propagatedBuildInputs = [ cstruct lwt ];
15   }