zfs: 2.1.5 → 2.1.6

This commit is contained in:
Jörg Thalheim 2022-10-04 14:18:13 +02:00
parent de80d1d04e
commit 5bae92a715

View file

@ -16,7 +16,7 @@
, enablePython ? true , enablePython ? true
# for determining the latest compatible linuxPackages # for determining the latest compatible linuxPackages
, linuxPackages_5_15 ? pkgs.linuxKernel.packages.linux_5_15 , linuxPackages_5_19 ? pkgs.linuxKernel.packages.linux_5_19
}: }:
let let
@ -216,28 +216,28 @@ in {
# to be adapted # to be adapted
zfsStable = common { zfsStable = common {
# check the release notes for compatible kernels # check the release notes for compatible kernels
kernelCompatible = kernel.kernelOlder "5.19"; kernelCompatible = kernel.kernelOlder "5.20";
latestCompatibleLinuxPackages = linuxPackages_5_15; latestCompatibleLinuxPackages = linuxPackages_5_19;
# this package should point to the latest release. # this package should point to the latest release.
version = "2.1.5"; version = "2.1.6";
sha256 = "sha256-a9rmuPO8R8UfxdHvwjfFuYRGn97a1MPmLZRvr3l0swE="; sha256 = "sha256-gd5WlNtnoSiVj4sKUGf0WhR7Z1GPebwu3Z1mkNsoC/I=";
}; };
zfsUnstable = common { zfsUnstable = common {
# check the release notes for compatible kernels # check the release notes for compatible kernels
kernelCompatible = kernel.kernelOlder "5.19"; kernelCompatible = kernel.kernelOlder "5.20";
latestCompatibleLinuxPackages = linuxPackages_5_15; latestCompatibleLinuxPackages = linuxPackages_5_19;
# this package should point to a version / git revision compatible with the latest kernel release # this package should point to a version / git revision compatible with the latest kernel release
# IMPORTANT: Always use a tagged release candidate or commits from the # IMPORTANT: Always use a tagged release candidate or commits from the
# zfs-<version>-staging branch, because this is tested by the OpenZFS # zfs-<version>-staging branch, because this is tested by the OpenZFS
# maintainers. # maintainers.
version = "2.1.5"; version = "2.1.6";
# rev = "0000000000000000000000000000000000000000"; # rev = "0000000000000000000000000000000000000000";
sha256 = "sha256-a9rmuPO8R8UfxdHvwjfFuYRGn97a1MPmLZRvr3l0swE="; sha256 = "sha256-gd5WlNtnoSiVj4sKUGf0WhR7Z1GPebwu3Z1mkNsoC/I=";
isUnstable = true; isUnstable = true;
}; };