summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2021-12-17 13:23:14 +0100
committerGitHub <noreply@github.com>2021-12-17 13:23:14 +0100
commit318c9f88604f55e4bf0b0f39a16b85732236bac2 (patch)
treeaad8c895362cefe05eedef7c5749fa658cd3668f /pkgs/os-specific/linux
parent100db36743794c9779284351d886d27f6c1a8097 (diff)
parent04ae83ae6b4c5b7a7a9db87f091eaf9f977965bf (diff)
downloadnixpkgs-318c9f88604f55e4bf0b0f39a16b85732236bac2.tar
nixpkgs-318c9f88604f55e4bf0b0f39a16b85732236bac2.tar.gz
nixpkgs-318c9f88604f55e4bf0b0f39a16b85732236bac2.tar.bz2
nixpkgs-318c9f88604f55e4bf0b0f39a16b85732236bac2.tar.lz
nixpkgs-318c9f88604f55e4bf0b0f39a16b85732236bac2.tar.xz
nixpkgs-318c9f88604f55e4bf0b0f39a16b85732236bac2.tar.zst
nixpkgs-318c9f88604f55e4bf0b0f39a16b85732236bac2.zip
Merge pull request #150923 from amarshall/zfs-2.1.2
zfs: 2.1.1 → 2.1.2
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/zfs/default.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/os-specific/linux/zfs/default.nix b/pkgs/os-specific/linux/zfs/default.nix
index 29e7f3e9b94..7341240f95a 100644
--- a/pkgs/os-specific/linux/zfs/default.nix
+++ b/pkgs/os-specific/linux/zfs/default.nix
@@ -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;
@@ -46,7 +46,7 @@ let
       name = "zfs-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}";
 
       src = fetchFromGitHub {
-        owner = "zfsonlinux";
+        owner = "openzfs";
         repo = "zfs";
         inherit rev sha256;
       };
@@ -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;
   };