1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 16:42:09 +00:00

ocamlPackages.containers: disable tests with OCaml < 4.08

This commit is contained in:
Vincent Laporte 2021-09-20 18:14:32 +02:00 committed by Vincent Laporte
parent 5f16f0a9cf
commit 049ca38a0c
2 changed files with 2 additions and 3 deletions

View file

@ -6,10 +6,9 @@
buildDunePackage { buildDunePackage {
pname = "containers-data"; pname = "containers-data";
inherit (containers) src version useDune2; inherit (containers) src version doCheck useDune2;
buildInputs = [ dune-configurator ]; buildInputs = [ dune-configurator ];
doCheck = true;
checkInputs = [ gen iter qcheck ]; checkInputs = [ gen iter qcheck ];
propagatedBuildInputs = [ containers ]; propagatedBuildInputs = [ containers ];

View file

@ -22,7 +22,7 @@ buildDunePackage rec {
checkInputs = [ gen iter ounit qcheck uutf ]; checkInputs = [ gen iter ounit qcheck uutf ];
doCheck = true; doCheck = lib.versionAtLeast ocaml.version "4.08";
meta = { meta = {
homepage = "https://github.com/c-cube/ocaml-containers"; homepage = "https://github.com/c-cube/ocaml-containers";