mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
openafsClient: mark as broken on unsupported kernels
Sandboxed builds against linux 3.14 and 4.4 fail; 3.18.29 and 4.3
succeed. From this, I conclude that 4.3 is the latest supported
version, while the lower bound is set to the oldest kernel in
nixpkgs >3.14 (the changelog does not indicate otherwise).
It appears that openafs-client is simply incompatible with grsec;
all hydra builds of openafs-client on grsec fail; local sandboxed
builds against grsec with the most recent openafs-client also fail.
(cherry picked from commit b741198116
)
This commit is contained in:
parent
bfece38f51
commit
bd58129a12
@ -44,5 +44,9 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.ipl10;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.z77z ];
|
||||
broken =
|
||||
(builtins.compareVersions kernel.version "3.18" == -1) ||
|
||||
(builtins.compareVersions kernel.version "4.4" != -1) ||
|
||||
(kernel.features.grsecurity or false);
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user