Merge pull request #221294 from PedroHLC/zfs-unstable-6.3-fix

zfsUnstable: re-use stdenv for broken tag
This commit is contained in:
Jörg Thalheim 2023-03-15 11:41:19 +00:00 committed by GitHub
commit c9b87bdbdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -238,11 +238,11 @@ in {
# zfs-2.1.9<=x<=2.1.10 is broken with aarch64-linux-6.2
# for future releases, please delete this condition.
kernelCompatible =
if kernel.stdenv.isx86_64
if stdenv'.isx86_64
then kernel.kernelOlder "6.3"
else kernel.kernelOlder "6.2";
latestCompatibleLinuxPackages =
if kernel.stdenv.isx86_64
if stdenv'.isx86_64
then linuxPackages_6_2
else linuxPackages_6_1;