Commit 43fbdc75 authored by Anthony Roussel's avatar Anthony Roussel Committed by Alyssa Ross
Browse files

linuxPackages.evdi: mark broken on linux 6.6

Fixes #265868
`evdi` kernel module is incompatible with Linux 6.6, so mark it as broken.
parent eb2f8aa6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43,6 +43,6 @@ stdenv.mkDerivation rec {
    platforms = platforms.linux;
    license = with licenses; [ lgpl21Only gpl2Only ];
    homepage = "https://www.displaylink.com/";
    broken = kernel.kernelOlder "4.19";
    broken = kernel.kernelOlder "4.19" || kernel.kernelAtLeast "6.6";
  };
}