microfetch: 0.4.4 -> 0.4.6 (#377799)
[NixPkgs.git] / pkgs / development / ocaml-modules / cstruct / unix.nix
blob8f3e139563d90a33f26d8f71b2684ba0011d391f
2   lib,
3   buildDunePackage,
4   cstruct,
5 }:
7 if lib.versionOlder (cstruct.version or "1") "3" then
8   cstruct
9 else
11   buildDunePackage {
12     pname = "cstruct-unix";
13     inherit (cstruct) version src meta;
15     minimalOCamlVersion = "4.08";
16     duneVersion = "3";
18     propagatedBuildInputs = [ cstruct ];
19   }