linuxPackages.evdi: mark broken on linux 6.6

Fixes #265868
`evdi` kernel module is incompatible with Linux 6.6, so mark it as broken.
This commit is contained in:
Anthony Roussel 2023-11-07 14:55:59 +01:00 committed by Alyssa Ross
parent eb2f8aa686
commit 43fbdc751b

View File

@ -43,6 +43,6 @@ stdenv.mkDerivation rec {
platforms = platforms.linux; platforms = platforms.linux;
license = with licenses; [ lgpl21Only gpl2Only ]; license = with licenses; [ lgpl21Only gpl2Only ];
homepage = "https://www.displaylink.com/"; homepage = "https://www.displaylink.com/";
broken = kernel.kernelOlder "4.19"; broken = kernel.kernelOlder "4.19" || kernel.kernelAtLeast "6.6";
}; };
} }