about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/iter
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-09-27 17:11:54 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2020-09-30 23:24:44 +0200
commit279b831d1b6e3e6335e09c520cefd26e24a12603 (patch)
tree29903195e1260cf2a72473e37b95c97dd840325b /pkgs/development/ocaml-modules/iter
parentf8f892254ac8b7413338c91c106c730d52496cd9 (diff)
ocamlPackages.iter: disable tests for OCaml < 4.07
Diffstat (limited to 'pkgs/development/ocaml-modules/iter')
-rw-r--r--pkgs/development/ocaml-modules/iter/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/iter/default.nix b/pkgs/development/ocaml-modules/iter/default.nix
index 45cfa07e436d1..66f3f26285edf 100644
--- a/pkgs/development/ocaml-modules/iter/default.nix
+++ b/pkgs/development/ocaml-modules/iter/default.nix
@@ -14,7 +14,7 @@ buildDunePackage rec {
   buildInputs = lib.optionals doCheck [ mdx.bin qtest ];
   propagatedBuildInputs = [ result ];
 
-  doCheck = lib.versionAtLeast ocaml.version "4.04";
+  doCheck = lib.versionAtLeast ocaml.version "4.07";
 
   meta = {
     homepage = "https://github.com/c-cube/sequence";