forked from mirrors/nixpkgs
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:
parent
daf787a96d
commit
74838cd03d
|
@ -55,5 +55,7 @@ stdenv.mkDerivation rec {
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = with platforms; linux ++ freebsd;
|
platforms = with platforms; linux ++ freebsd;
|
||||||
maintainers = with maintainers; [ wkennington ];
|
maintainers = with maintainers; [ wkennington ];
|
||||||
|
# kernel 4.2 is the most recent supported kernel
|
||||||
|
broken = kernel != null && builtins.compareVersions kernel.version "4.2" == 1;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue