From 9f1b57d841bb3bcf2a49374d848ebb1fdcb42535 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 11 Feb 2025 05:53:03 +0000 Subject: [PATCH] linuxPackages.r8168: 8.053.00 -> 8.055.00 --- pkgs/os-specific/linux/r8168/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/r8168/default.nix b/pkgs/os-specific/linux/r8168/default.nix index 77d91d039bc6..e272449933ac 100644 --- a/pkgs/os-specific/linux/r8168/default.nix +++ b/pkgs/os-specific/linux/r8168/default.nix @@ -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"; }; }