mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
ocamlPackages.containers: disable tests with OCaml < 4.08
This commit is contained in:
parent
5f16f0a9cf
commit
049ca38a0c
|
@ -6,10 +6,9 @@
|
|||
buildDunePackage {
|
||||
pname = "containers-data";
|
||||
|
||||
inherit (containers) src version useDune2;
|
||||
inherit (containers) src version doCheck useDune2;
|
||||
|
||||
buildInputs = [ dune-configurator ];
|
||||
doCheck = true;
|
||||
checkInputs = [ gen iter qcheck ];
|
||||
|
||||
propagatedBuildInputs = [ containers ];
|
||||
|
|
|
@ -22,7 +22,7 @@ buildDunePackage rec {
|
|||
|
||||
checkInputs = [ gen iter ounit qcheck uutf ];
|
||||
|
||||
doCheck = true;
|
||||
doCheck = lib.versionAtLeast ocaml.version "4.08";
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/c-cube/ocaml-containers";
|
||||
|
|
Loading…
Reference in a new issue