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