linuxPackages.isgx: mark as broken for kernels >= 6.4 (#353876)

This commit is contained in:
Weijia Wang 2024-11-09 01:09:20 +01:00 committed by GitHub
commit 8cccca1f90
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,5 +41,9 @@ stdenv.mkDerivation rec {
license = with licenses; [ bsd3 /* OR */ gpl2Only ];
maintainers = [ ];
platforms = [ "x86_64-linux" ];
# This kernel module is now in mainline so newer kernels should
# use that rather than this out-of-tree version (officially
# deprecated by Intel)
broken = kernel.kernelAtLeast "6.4";
};
}