Skip to content

Commit

Permalink
anbox: kernel.features can be null
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Ringer committed Nov 2, 2020
1 parent 613adb0 commit c6afa88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/anbox/kmod.nix
Expand Up @@ -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);
broken = (versionOlder kernel.version "4.4") || (kernel.features.grsecurity or false);
maintainers = with maintainers; [ edwtjo ];
};

Expand Down

0 comments on commit c6afa88

Please sign in to comment.