summary refs log tree commit diff
path: root/pkgs/os-specific/linux/anbox
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-04-05 10:01:58 +0000
committerAlyssa Ross <hi@alyssa.is>2021-04-06 09:48:56 +0000
commit52cd3538ff0214f0416455322cec299d2a43a436 (patch)
treeb7ff5010abfa6479bff6703399a562c7e4b8d066 /pkgs/os-specific/linux/anbox
parenta10183d3ecdb391a867c8b8da21ca07ae3d6e5cf (diff)
downloadnixpkgs-52cd3538ff0214f0416455322cec299d2a43a436.tar
nixpkgs-52cd3538ff0214f0416455322cec299d2a43a436.tar.gz
nixpkgs-52cd3538ff0214f0416455322cec299d2a43a436.tar.bz2
nixpkgs-52cd3538ff0214f0416455322cec299d2a43a436.tar.lz
nixpkgs-52cd3538ff0214f0416455322cec299d2a43a436.tar.xz
nixpkgs-52cd3538ff0214f0416455322cec299d2a43a436.tar.zst
nixpkgs-52cd3538ff0214f0416455322cec299d2a43a436.zip
linux: remove remnants of grsecurity
Nixpkgs hasn't supported grsecurity kernels since 2017, so unless
anybody is manually enabling the grsecurity feature to make these
small kernel tweaks this is dead code.

This means we don't actually support any "features" in the kernel
common-config any more, but I've left the argument there because it's
conceivable we could have some again in future.
Diffstat (limited to 'pkgs/os-specific/linux/anbox')
-rw-r--r--pkgs/os-specific/linux/anbox/kmod.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/anbox/kmod.nix b/pkgs/os-specific/linux/anbox/kmod.nix
index f62e6ee6aa5..1ed6d9c5f72 100644
--- a/pkgs/os-specific/linux/anbox/kmod.nix
+++ b/pkgs/os-specific/linux/anbox/kmod.nix
@@ -36,7 +36,7 @@ stdenv.mkDerivation {
     homepage = "https://github.com/anbox/anbox-modules";
     license = licenses.gpl2;
     platforms = platforms.linux;
-    broken = (versionOlder kernel.version "4.4") || (kernel.features.grsecurity or false);
+    broken = (versionOlder kernel.version "4.4");
     maintainers = with maintainers; [ edwtjo ];
   };