ocamlPackages.ppx_deriving: disable test with OCaml ≥ 5.0

This commit is contained in:
Vincent Laporte 2022-12-27 05:11:47 +01:00 committed by Vincent Laporte
parent bfdedc362f
commit 730e057313

View file

@ -1,6 +1,7 @@
{ lib
, fetchurl
, buildDunePackage
, ocaml
, cppo
, ppxlib
, ppx_derivers
@ -51,7 +52,7 @@ buildDunePackage rec {
result
];
doCheck = true;
doCheck = lib.versionOlder ocaml.version "5.0";
checkInputs = [
(if lib.versionAtLeast version "5.2" then ounit2 else ounit)
];