Skip to content
forked from NixOS/nixpkgs

Commit

Permalink
zfsUnstable: 2.1.12 → 2.1.13-unstable-2023-07-26
Browse files Browse the repository at this point in the history
https://github.com/openzfs/zfs/commits/zfs-2.1.13-staging

With anecdote from a NixOS user that it’s working
openzfs/zfs#15125

…working for me as well as I built+booted from this commit.
  • Loading branch information
toastal committed Jul 31, 2023
1 parent 767ae64 commit 814a7a5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkgs/os-specific/linux/zfs/unstable.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,19 @@ in
callPackage ./generic.nix args {
# check the release notes for compatible kernels
kernelCompatible = if stdenv'.isx86_64 || removeLinuxDRM
then kernel.kernelOlder "6.4"
then kernel.kernelOlder "6.5"
else kernel.kernelOlder "6.2";

latestCompatibleLinuxPackages = linuxKernel.packages.linux_6_1;
latestCompatibleLinuxPackages = linuxKernel.packages.linux_6_4;

# 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.12";
version = "2.1.13-unstable-2023-07-26";
rev = "1abf68b7aea298d6335d64e2e2bcf24681c84a9e";

sha256 = "eYUR5d4gpTrlFu6j1uL83DWL9uPGgAUDRdSEb73V5i4=";
sha256 = "o73OZv9liDJPTED4uAYEn6TG2Ek+74sqVuT7oGL8Rms=";

isUnstable = true;
}

0 comments on commit 814a7a5

Please sign in to comment.