r8125: add broken check for kernel >=5.9.1

This commit is contained in:
peelz 2020-12-31 15:05:57 -05:00
parent 40eaff5836
commit 03471b0e1c

View file

@ -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 ];