Merge pull request #232460 from hydrogenoxide/fix/zfs.package.latestCompatibleLinuxPackages

zfs: fix check for latestCompatibleLinuxPackages
This commit is contained in:
Vlad M 2023-05-22 16:51:13 +03:00 committed by GitHub
commit bcf61a0ea9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,8 +16,8 @@ callPackage ./generic.nix args {
else kernel.kernelOlder "6.2";
latestCompatibleLinuxPackages =
if stdenv'.isx86_64
then linuxKernel.packages.linux_6_1
else linuxKernel.packages.linux_6_2;
then linuxKernel.packages.linux_6_2
else linuxKernel.packages.linux_6_1;
# this package should point to the latest release.
version = "2.1.11";