sysdig: disable hardened and zen kernels
Also it currently compiles with zen kernels, it doesn't with lqx. Since we currently don't have a mechanism of lqx only, we can re-add, if one of the lqx/zen maintainers steps up and also help maintaining and testing sysdig.
This commit is contained in:
parent
50625bd0fb
commit
1a92639f29
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ in stdenv.mkDerivation rec {
|
|||
license = with licenses; [ asl20 gpl2 mit ];
|
||||
maintainers = [ maintainers.raskin ];
|
||||
platforms = [ "x86_64-linux" ] ++ platforms.darwin;
|
||||
broken = kernel != null && ((versionOlder kernel.version "4.14") || (kernel.isHardened && lib.lists.findSingle (x: x == kernel.version) false true [ "4.19" "5.4" "lqx" ]));
|
||||
broken = kernel != null && ((versionOlder kernel.version "4.14") || kernel.isHardened || kernel.isZen);
|
||||
homepage = "https://sysdig.com/opensource/";
|
||||
downloadPage = "https://github.com/draios/sysdig/releases";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue