ocamlPackages.syslog-message: disable tests with OCaml < 4.08

This commit is contained in:
Vincent Laporte 2021-09-20 18:14:39 +02:00 committed by Vincent Laporte
parent 09f33fd8aa
commit 6f85b0fa7b

View File

@ -1,4 +1,5 @@
{ lib, buildDunePackage, fetchurl
, ocaml
, astring, ptime, rresult, qcheck
}:
@ -21,7 +22,7 @@ buildDunePackage rec {
rresult
];
doCheck = true;
doCheck = lib.versionAtLeast ocaml.version "4.08";
checkInputs = [
qcheck
];