···15151616 propagatedBuildInputs = [ bigarray-compat ];
17171818- # alcotest isn't available for OCaml < 4.05 due to fmt
1919- doCheck = lib.versionAtLeast ocaml.version "4.05";
1818+ # alcotest isn't available for OCaml < 4.08 due to fmt
1919+ doCheck = lib.versionAtLeast ocaml.version "4.08";
2020 checkInputs = [ alcotest ];
21212222 meta = {
+2-2
pkgs/development/ocaml-modules/cstruct/sexp.nix
···10101111 minimumOCamlVersion = "4.03";
12121313- # alcotest is only available on OCaml >= 4.05 due to fmt
1414- doCheck = lib.versionAtLeast ocaml.version "4.05";
1313+ # alcotest is only available on OCaml >= 4.08 due to fmt
1414+ doCheck = lib.versionAtLeast ocaml.version "4.08";
1515 checkInputs = [ alcotest ];
16161717 propagatedBuildInputs = [ cstruct sexplib ];
···2525 ];
26262727 # technically emile is available for ocaml >= 4.03, but alcotest
2828- # and angstrom (fmt) are only available for >= 4.05. Disabling
2929- # tests for < 4.05 at least improves the error message
3030- doCheck = lib.versionAtLeast ocaml.version "4.05";
2828+ # and angstrom (fmt) are only available for >= 4.08. Disabling
2929+ # tests for < 4.08 at least improves the error message
3030+ doCheck = lib.versionAtLeast ocaml.version "4.08";
3131 checkInputs = [ alcotest ];
32323333 meta = with lib; {