summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/psq
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2021-09-20 18:14:46 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2021-09-27 05:59:07 +0200
commit8c32eb1a99963124c9a1203c690bddad796b7d8e (patch)
treed72f2436bf2f9577fee32849d074beba8a055571 /pkgs/development/ocaml-modules/psq
parentc5a5f7b13df1191656974122d8a1a8b090fd810f (diff)
downloadnixpkgs-8c32eb1a99963124c9a1203c690bddad796b7d8e.tar
nixpkgs-8c32eb1a99963124c9a1203c690bddad796b7d8e.tar.gz
nixpkgs-8c32eb1a99963124c9a1203c690bddad796b7d8e.tar.bz2
nixpkgs-8c32eb1a99963124c9a1203c690bddad796b7d8e.tar.lz
nixpkgs-8c32eb1a99963124c9a1203c690bddad796b7d8e.tar.xz
nixpkgs-8c32eb1a99963124c9a1203c690bddad796b7d8e.tar.zst
nixpkgs-8c32eb1a99963124c9a1203c690bddad796b7d8e.zip
ocamlPackages.psq: disable tests with OCaml < 4.08
Diffstat (limited to 'pkgs/development/ocaml-modules/psq')
-rw-r--r--pkgs/development/ocaml-modules/psq/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/psq/default.nix b/pkgs/development/ocaml-modules/psq/default.nix
index f7c2f3497a1..ea9a0615b41 100644
--- a/pkgs/development/ocaml-modules/psq/default.nix
+++ b/pkgs/development/ocaml-modules/psq/default.nix
@@ -14,7 +14,7 @@ buildDunePackage rec {
 
   propagatedBuildInputs = [ seq ];
 
-  doCheck = lib.versionAtLeast ocaml.version "4.07";
+  doCheck = lib.versionAtLeast ocaml.version "4.08";
   checkInputs = [ qcheck-alcotest ];
 
   meta = {