mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
r8125: add broken check for kernel >=5.9.1
This commit is contained in:
parent
40eaff5836
commit
03471b0e1c
1 changed files with 2 additions and 0 deletions
|
@ -38,6 +38,8 @@ stdenv.mkDerivation rec {
|
|||
longDescription = ''
|
||||
A kernel module for Realtek 8125 2.5G network cards.
|
||||
'';
|
||||
# r8125 has been integrated into the kernel as of v5.9.1
|
||||
broken = lib.versionAtLeast kernel.version "5.9.1";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ peelz ];
|
||||
|
|
Loading…
Reference in a new issue