Merge pull request #290768 from sdht0/zfs-update

zfs: 2.2.2 -> 2.2.3
This commit is contained in:
Adam C. Stephens 2024-02-24 13:38:53 -05:00 committed by GitHub
commit 05ad58c178
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,20 +17,20 @@ callPackage ./generic.nix args {
# check the release notes for compatible kernels
kernelCompatible =
if stdenv'.isx86_64 || removeLinuxDRM
then kernel.kernelOlder "6.7"
then kernel.kernelOlder "6.8"
else kernel.kernelOlder "6.2";
latestCompatibleLinuxPackages = if stdenv'.isx86_64 || removeLinuxDRM
then linuxKernel.packages.linux_6_6
then linuxKernel.packages.linux_6_7
else linuxKernel.packages.linux_6_1;
# this package should point to the latest release.
version = "2.2.2";
version = "2.2.3";
tests = [
nixosTests.zfs.installer
nixosTests.zfs.stable
];
hash = "sha256-CqhETAwhWMhbld5ib3Rz1dxms+GQbLwjEZw/V7U/2nE=";
hash = "sha256-Bzkow15OitUUQ+mTYhCXgTrQl+ao/B4feleHY/rSSjg=";
}