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:
parent
5f16f0a9cf
commit
049ca38a0c
|
@ -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 ];
|
||||||
|
|
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue