linuxPackages.r8168: 8.053.00 -> 8.055.00

This commit is contained in:
R. Ryantm 2025-02-11 05:53:03 +00:00 committed by Wolfgang Walther
parent 85f896ec76
commit 9f1b57d841
No known key found for this signature in database
GPG Key ID: B39893FA5F65CAE1

View File

@ -13,18 +13,18 @@ in
stdenv.mkDerivation rec {
name = "r8168-${kernel.version}-${version}";
# on update please verify that the source matches the realtek version
version = "8.053.00";
version = "8.055.00";
# This is a mirror. The original website[1] doesn't allow non-interactive
# downloads, instead emailing you a download link.
# [1] https://www.realtek.com/Download/List?cate_id=584
# I've verified manually (`diff -r`) that the source code for version 8.053.00
# I've verified manually (`diff -r`) that the source code for version 8.055.00
# is the same as the one available on the realtek website.
src = fetchFromGitHub {
owner = "mtorromeo";
repo = "r8168";
rev = version;
sha256 = "0bHGs8jyWd+ZiixOoNkBqhS9RjDpRp3vveAgk1YuOWU=";
sha256 = "sha256-qL64+jlF1biWaYc5Ga/fjz8ZY3u72bcKVtDpiozHb1g=";
};
hardeningDisable = [ "pic" ];
@ -61,6 +61,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ ];
broken = lib.versionAtLeast kernel.modDirVersion "6.9";
broken = lib.versionAtLeast kernel.modDirVersion "6.13";
};
}