anbox: kernel.features can be null
This commit is contained in:
parent
613adb0e88
commit
c6afa8820b
|
@ -36,7 +36,7 @@ stdenv.mkDerivation {
|
||||||
homepage = "https://github.com/anbox/anbox-modules";
|
homepage = "https://github.com/anbox/anbox-modules";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
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 ];
|
maintainers = with maintainers; [ edwtjo ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue