summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2022-03-21 09:18:50 +0000
committerAlyssa Ross <hi@alyssa.is>2022-03-21 13:22:59 +0000
commit6d43305b8987fea18a0c2fe7a5625acd63a57278 (patch)
treec591855646d5dc17b1ff731fce6089f4ca7bb92d
parent69af0d17174ee60f75e6e9f4d74c2152f4e7968e (diff)
downloadnixpkgs-6d43305b8987fea18a0c2fe7a5625acd63a57278.tar
nixpkgs-6d43305b8987fea18a0c2fe7a5625acd63a57278.tar.gz
nixpkgs-6d43305b8987fea18a0c2fe7a5625acd63a57278.tar.bz2
nixpkgs-6d43305b8987fea18a0c2fe7a5625acd63a57278.tar.lz
nixpkgs-6d43305b8987fea18a0c2fe7a5625acd63a57278.tar.xz
nixpkgs-6d43305b8987fea18a0c2fe7a5625acd63a57278.tar.zst
nixpkgs-6d43305b8987fea18a0c2fe7a5625acd63a57278.zip
linuxPackages.r8168: mark broken on Linux 5.17
-rw-r--r--pkgs/os-specific/linux/r8168/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/r8168/default.nix b/pkgs/os-specific/linux/r8168/default.nix
index 680cc531af4..bcf5fb8956a 100644
--- a/pkgs/os-specific/linux/r8168/default.nix
+++ b/pkgs/os-specific/linux/r8168/default.nix
@@ -10,7 +10,7 @@ in stdenv.mkDerivation rec {
 
   # This is a mirror. The original website[1] doesn't allow non-interactive
   # downloads, instead emailing you a download link.
-  # [1] http://www.realtek.com.tw/downloads/downloadsView.aspx?PFid=5&Level=5&Conn=4&DownTypeID=3
+  # [1] https://www.realtek.com/en/component/zoo/category/network-interface-controllers-10-100-1000m-gigabit-ethernet-pci-express-software
   # I've verified manually (`diff -r`) that the source code for version 8.046.00
   # is the same as the one available on the realtek website.
   src = fetchFromGitHub {
@@ -54,5 +54,6 @@ in stdenv.mkDerivation rec {
     license = licenses.gpl2Plus;
     platforms = platforms.linux;
     maintainers = with maintainers; [ timokau ];
+    broken = kernel.kernelAtLeast "5.17";
   };
 }