about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/bigarray-overlap
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-08-23 08:04:50 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-08-31 07:36:39 +0200
commit0f4f35c7b05a559bee99bb2be45f850af8e3bda8 (patch)
tree4387e317c287a5509e01792ef29e56f5628006e8 /pkgs/development/ocaml-modules/bigarray-overlap
parent30942c90cbdf884dc6df63fbec859ac812e7d9d1 (diff)
ocamlPackages.fmt: 0.8.9 → 0.9.0
Diffstat (limited to 'pkgs/development/ocaml-modules/bigarray-overlap')
-rw-r--r--pkgs/development/ocaml-modules/bigarray-overlap/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/bigarray-overlap/default.nix b/pkgs/development/ocaml-modules/bigarray-overlap/default.nix
index a5f5ae33ede7b..c702faee8f82d 100644
--- a/pkgs/development/ocaml-modules/bigarray-overlap/default.nix
+++ b/pkgs/development/ocaml-modules/bigarray-overlap/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildDunePackage, fetchurl
+{ lib, buildDunePackage, ocaml, fetchurl
 , bigarray-compat, alcotest, astring, fpath, bos, findlib, pkg-config
 }:
 
@@ -20,7 +20,7 @@ buildDunePackage rec {
 
   nativeBuildInputs = [ findlib pkg-config ];
   checkInputs = [ alcotest astring fpath bos ];
-  doCheck = true;
+  doCheck = lib.versionAtLeast ocaml.version "4.08";
 
   meta = with lib; {
     homepage = "https://github.com/dinosaure/overlap";