accelio: kernel 4.2 is the most recent supported kernel

All Hydra builds on more recent kernels fail; from reading
the accelio documentation, I get the impression that 4.2 is
the most recent supported kernel version.
This commit is contained in:
Joachim Fasting 2016-03-26 20:14:43 +01:00
parent daf787a96d
commit 74838cd03d

View File

@ -55,5 +55,7 @@ stdenv.mkDerivation rec {
license = licenses.bsd3;
platforms = with platforms; linux ++ freebsd;
maintainers = with maintainers; [ wkennington ];
# kernel 4.2 is the most recent supported kernel
broken = kernel != null && builtins.compareVersions kernel.version "4.2" == 1;
};
}