Commit 82aa30fd authored by magicquark's avatar magicquark
Browse files

linuxPackages.rtl8814au: mark broken on kernel versions < 5.2 and > 6.14

- On Hydra, builds for kernel version  5_10, 5_15, 6_1, 6_6 and 6_12
  succeed, but the build for the latest latest kernel version 6_17 is
  failing.

- The upstream provider of the driver only supports kernel versions
  between version 5.2 and 6.14, inclusive. This is partly because a
  driver has been up-streamed into the kernel, so the package is not
  needed for recent drivers.

  [Reference](https://github.com/morrownr/8814au.)

- Because of this, mark the driver as broken on the relevant kernel
  versions.
parent 92ebba65
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -42,5 +42,6 @@ stdenv.mkDerivation {
    homepage = "https://github.com/morrownr/8814au";
    license = licenses.gpl2Only;
    maintainers = [ maintainers.lassulus ];
    broken = kernel.kernelOlder "5.2" || kernel.kernelAtLeast "6.15";
  };
}