lol

linuxPackages.r8168: 8.053.00 -> 8.055.00

authored by

R. Ryantm and committed by
Wolfgang Walther
9f1b57d8 85f896ec

+4 -4
+4 -4
pkgs/os-specific/linux/r8168/default.nix
··· 13 13 stdenv.mkDerivation rec { 14 14 name = "r8168-${kernel.version}-${version}"; 15 15 # on update please verify that the source matches the realtek version 16 - version = "8.053.00"; 16 + version = "8.055.00"; 17 17 18 18 # This is a mirror. The original website[1] doesn't allow non-interactive 19 19 # downloads, instead emailing you a download link. 20 20 # [1] https://www.realtek.com/Download/List?cate_id=584 21 - # I've verified manually (`diff -r`) that the source code for version 8.053.00 21 + # I've verified manually (`diff -r`) that the source code for version 8.055.00 22 22 # is the same as the one available on the realtek website. 23 23 src = fetchFromGitHub { 24 24 owner = "mtorromeo"; 25 25 repo = "r8168"; 26 26 rev = version; 27 - sha256 = "0bHGs8jyWd+ZiixOoNkBqhS9RjDpRp3vveAgk1YuOWU="; 27 + sha256 = "sha256-qL64+jlF1biWaYc5Ga/fjz8ZY3u72bcKVtDpiozHb1g="; 28 28 }; 29 29 30 30 hardeningDisable = [ "pic" ]; ··· 61 61 license = licenses.gpl2Plus; 62 62 platforms = platforms.linux; 63 63 maintainers = [ ]; 64 - broken = lib.versionAtLeast kernel.modDirVersion "6.9"; 64 + broken = lib.versionAtLeast kernel.modDirVersion "6.13"; 65 65 }; 66 66 }