Commit f8a1ba0e authored by Andrew Marshall's avatar Andrew Marshall
Browse files

zfs_2_2: fix latestCompatibleLinuxPackages

Broken in ba0d4952, which removed Linux
6.8 and 6.9, so now 6.6 is the latest compatible.
parent 29aa9e9b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ callPackage ./generic.nix args {
  # check the release notes for compatible kernels
  kernelCompatible = kernel.kernelOlder "6.10";

  latestCompatibleLinuxPackages = linuxKernel.packages.linux_6_9;
  latestCompatibleLinuxPackages = linuxKernel.packages.linux_6_6;

  # this package should point to the latest release.
  version = "2.2.5";