ocamlPackages.containers-data: disable tests with OCaml 5.0

This commit is contained in:
Vincent Laporte 2023-10-06 07:17:32 +02:00
parent ff910956e9
commit bbb8c88974
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -1,4 +1,5 @@
{ buildDunePackage, containers
, ocaml
, dune-configurator
, gen, iter, qcheck-core
, mdx
@ -7,7 +8,9 @@
buildDunePackage {
pname = "containers-data";
inherit (containers) src version doCheck;
inherit (containers) src version;
doCheck = containers.doCheck && ocaml.meta.branch != "5.0";
buildInputs = [ dune-configurator ];
nativeCheckInputs = [ mdx.bin ];