zfs_2_2: 2.2.5 -> 2.2.6 (#339696)

authored by Adam C. Stephens and committed by GitHub 63aafed9 5dd6efea

+6 -5
+3 -3
pkgs/os-specific/linux/zfs/2_2.nix
··· 14 14 # this attribute is the correct one for this package. 15 15 kernelModuleAttribute = "zfs_2_2"; 16 16 # check the release notes for compatible kernels 17 - kernelCompatible = kernel: kernel.kernelOlder "6.10"; 17 + kernelCompatible = kernel: kernel.kernelOlder "6.11"; 18 18 19 19 # this package should point to the latest release. 20 - version = "2.2.5"; 20 + version = "2.2.6"; 21 21 22 22 tests = [ 23 23 nixosTests.zfs.installer ··· 26 26 27 27 maintainers = with lib.maintainers; [ adamcstephens amarshall ]; 28 28 29 - hash = "sha256-BkwcNPk+jX8CXp5xEVrg4THof7o/5j8RY2SY6+IPNTg="; 29 + hash = "sha256-wkgoYg6uQOHVq8a9sJXzO/QXJ6q28l7JXWkC+BFvOb0="; 30 30 }
+1
pkgs/os-specific/linux/zfs/generic.nix
··· 184 184 185 185 # Add Bash completions. 186 186 install -v -m444 -D -t $out/share/bash-completion/completions contrib/bash_completion.d/zfs 187 + '' + optionalString (lib.versionOlder version "2.2.6") '' 187 188 (cd $out/share/bash-completion/completions; ln -s zfs zpool) 188 189 ''; 189 190
+2 -2
pkgs/os-specific/linux/zfs/unstable.nix
··· 20 20 # IMPORTANT: Always use a tagged release candidate or commits from the 21 21 # zfs-<version>-staging branch, because this is tested by the OpenZFS 22 22 # maintainers. 23 - version = "2.2.5"; 23 + version = "2.2.6"; 24 24 # rev = ""; 25 25 26 26 tests = [ 27 27 nixosTests.zfs.unstable 28 28 ]; 29 29 30 - hash = "sha256-BkwcNPk+jX8CXp5xEVrg4THof7o/5j8RY2SY6+IPNTg="; 30 + hash = "sha256-wkgoYg6uQOHVq8a9sJXzO/QXJ6q28l7JXWkC+BFvOb0="; 31 31 }