earbuds: disable updateScript (#374592)
[NixPkgs.git] / pkgs / development / ocaml-modules / cstruct / lwt.nix
blobe040288583df5bb4e58ea8219e2597aeb5689789
2   lib,
3   buildDunePackage,
4   cstruct,
5   lwt,
6 }:
8 if lib.versionOlder (cstruct.version or "1") "3" then
9   cstruct
10 else
12   buildDunePackage {
13     pname = "cstruct-lwt";
14     inherit (cstruct) version src meta;
16     minimalOCamlVersion = "4.08";
17     duneVersion = "3";
19     propagatedBuildInputs = [
20       cstruct
21       lwt
22     ];
23   }