Skip to content

Commit

Permalink
Merge pull request NixOS#150923 from amarshall/zfs-2.1.2
Browse files Browse the repository at this point in the history
zfs: 2.1.1 → 2.1.2
  • Loading branch information
fpletz authored Dec 17, 2021
2 parents 100db36 + 04ae83a commit 318c9f8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pkgs/os-specific/linux/zfs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
, enablePython ? true

# for determining the latest compatible linuxPackages
, linuxPackages_5_10 ? pkgs.linuxKernel.packages.linux_5_10
, linuxPackages_5_15 ? pkgs.linuxKernel.packages.linux_5_15
}:

with lib;
Expand Down Expand Up @@ -46,7 +46,7 @@ let
name = "zfs-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}";

src = fetchFromGitHub {
owner = "zfsonlinux";
owner = "openzfs";
repo = "zfs";
inherit rev sha256;
};
Expand Down Expand Up @@ -215,28 +215,28 @@ in {
# to be adapted
zfsStable = common {
# check the release notes for compatible kernels
kernelCompatible = kernel.kernelAtLeast "3.10" && kernel.kernelOlder "5.15";
latestCompatibleLinuxPackages = linuxPackages_5_10;
kernelCompatible = kernel.kernelAtLeast "3.10" && kernel.kernelOlder "5.16";
latestCompatibleLinuxPackages = linuxPackages_5_15;

# this package should point to the latest release.
version = "2.1.1";
version = "2.1.2";

sha256 = "sha256-UUuJa5w/GsEvsgH/BnXFsP/dsOt9wwmPqKzDxLPrhiY=";
sha256 = "sha256-7oSFZlmjCr+egImIVf429GrFOKn3L3r4SMnK3LHHmL8=";
};

zfsUnstable = common {
# check the release notes for compatible kernels
kernelCompatible = kernel.kernelAtLeast "3.10" && kernel.kernelOlder "5.15";
latestCompatibleLinuxPackages = linuxPackages_5_10;
kernelCompatible = kernel.kernelAtLeast "3.10" && kernel.kernelOlder "5.16";
latestCompatibleLinuxPackages = linuxPackages_5_15;

# 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.1.1";
version = "2.1.2";
# rev = "0000000000000000000000000000000000000000";

sha256 = "sha256-UUuJa5w/GsEvsgH/BnXFsP/dsOt9wwmPqKzDxLPrhiY=";
sha256 = "sha256-7oSFZlmjCr+egImIVf429GrFOKn3L3r4SMnK3LHHmL8=";

isUnstable = true;
};
Expand Down

0 comments on commit 318c9f8

Please sign in to comment.