zfs_{2_3,unstable}: 2.3.2 -> 2.3.3

This commit is contained in:
Marie Ramlow 2025-06-19 22:35:36 +02:00
parent b43f9aaebc
commit 53aac1d02a
2 changed files with 6 additions and 6 deletions

View File

@ -11,10 +11,10 @@ callPackage ./generic.nix args {
# this attribute is the correct one for this package.
kernelModuleAttribute = "zfs_2_3";
# check the release notes for compatible kernels
kernelCompatible = kernel: kernel.kernelOlder "6.15";
kernelCompatible = kernel: kernel.kernelOlder "6.16";
# this package should point to the latest release.
version = "2.3.2";
version = "2.3.3";
tests =
{
@ -29,5 +29,5 @@ callPackage ./generic.nix args {
amarshall
];
hash = "sha256-+DqpIgHCVi0fDOqvKwaGXIiiXw8xEnlv2tgRwgLX9G8=";
hash = "sha256-NXAbyGBfpzWfm4NaP1/otTx8fOnoRV17343qUMdQp5U=";
}

View File

@ -9,20 +9,20 @@ callPackage ./generic.nix args {
# this attribute is the correct one for this package.
kernelModuleAttribute = "zfs_unstable";
# check the release notes for compatible kernels
kernelCompatible = kernel: kernel.kernelOlder "6.15";
kernelCompatible = kernel: kernel.kernelOlder "6.16";
# 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
# zfs-<version>-staging branch, because this is tested by the OpenZFS
# maintainers.
version = "2.3.2";
version = "2.3.3";
# rev = "";
tests = {
inherit (nixosTests.zfs) unstable;
};
hash = "sha256-+DqpIgHCVi0fDOqvKwaGXIiiXw8xEnlv2tgRwgLX9G8=";
hash = "sha256-NXAbyGBfpzWfm4NaP1/otTx8fOnoRV17343qUMdQp5U=";
extraLongDescription = ''
This is "unstable" ZFS, and will usually be a pre-release version of ZFS.