mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
linuxPackages.rtl*: mark broken on kernel >= 6.17
This commit is contained in:
@@ -39,6 +39,8 @@ stdenv.mkDerivation {
|
||||
homepage = "https://github.com/aircrack-ng/rtl8188eus";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ moni ];
|
||||
broken = (lib.versions.majorMinor kernel.version) == "5.4" && kernel.isHardened;
|
||||
broken =
|
||||
((lib.versions.majorMinor kernel.version) == "5.4" && kernel.isHardened)
|
||||
|| kernel.kernelAtLeast "6.17";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ stdenv.mkDerivation {
|
||||
homepage = "https://github.com/Mange/rtl8192eu-linux-driver";
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
broken = stdenv.hostPlatform.isAarch64;
|
||||
broken = stdenv.hostPlatform.isAarch64 || kernel.kernelAtLeast "6.17";
|
||||
maintainers = with maintainers; [ troydm ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -47,5 +47,6 @@ stdenv.mkDerivation {
|
||||
license = lib.licenses.gpl2Only;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ chuangzhu ];
|
||||
broken = kernel.kernelAtLeast "6.17";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -71,7 +71,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
license = licenses.gpl2Only;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
# FIX: error: invalid initializer
|
||||
broken = kernel.kernelOlder "6" && kernel.isHardened;
|
||||
broken = (kernel.kernelOlder "6" && kernel.isHardened) || kernel.kernelAtLeast "6.17";
|
||||
maintainers = with maintainers; [ lonyelon ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -42,5 +42,6 @@ stdenv.mkDerivation {
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ otavio ];
|
||||
broken = kernel.kernelAtLeast "6.17";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -48,5 +48,6 @@ stdenv.mkDerivation {
|
||||
"i686-linux"
|
||||
"aarch64-linux"
|
||||
];
|
||||
broken = kernel.kernelAtLeast "6.17";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user