From c67b73ce65cc4f15c437c7f293a0318df301f9dd Mon Sep 17 00:00:00 2001 From: magicquark <198001825+magicquark@users.noreply.github.com> Date: Fri, 14 Nov 2025 01:44:26 +0000 Subject: [PATCH 1/2] linuxPackages.rtl8821cu: 2025-05-08 -> 2025-10-09 Diff: https://github.com/morrownr/8821cu-20210916/compare/d74134a1c68f59f2b80cdd6c6afb8c1a8a687cbf..3d1fcf4bc838542ceb03b0b4e9e40600720cf6ae - This update adds fixes for Linux kernel versions 6.15.y, 6.16.y and 6.17.y. --- pkgs/os-specific/linux/rtl8821cu/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/rtl8821cu/default.nix b/pkgs/os-specific/linux/rtl8821cu/default.nix index 8e8bbf421bff..63c649cdbd50 100644 --- a/pkgs/os-specific/linux/rtl8821cu/default.nix +++ b/pkgs/os-specific/linux/rtl8821cu/default.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation { pname = "rtl8821cu"; - version = "${kernel.version}-unstable-2025-05-08"; + version = "${kernel.version}-unstable-2025-10-09"; src = fetchFromGitHub { owner = "morrownr"; repo = "8821cu-20210916"; - rev = "d74134a1c68f59f2b80cdd6c6afb8c1a8a687cbf"; - hash = "sha256-ExT7ONQeejFoMwUUXKua7wMnRi+3IYayLmlWIEWteK4="; + rev = "3d1fcf4bc838542ceb03b0b4e9e40600720cf6ae"; + hash = "sha256-N22f4TOPyGIROcmkiUtPgOASVEbbSqsyOKMZTQpqjLs="; }; hardeningDisable = [ "pic" ]; From 0c8f755827ec24df0d299e242888aa5086d8228c Mon Sep 17 00:00:00 2001 From: magicquark <198001825+magicquark@users.noreply.github.com> Date: Fri, 14 Nov 2025 01:50:24 +0000 Subject: [PATCH 2/2] linuxPackages.rtl8821cu: modernise --- pkgs/os-specific/linux/rtl8821cu/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/rtl8821cu/default.nix b/pkgs/os-specific/linux/rtl8821cu/default.nix index 63c649cdbd50..de0d76316dc0 100644 --- a/pkgs/os-specific/linux/rtl8821cu/default.nix +++ b/pkgs/os-specific/linux/rtl8821cu/default.nix @@ -36,11 +36,11 @@ stdenv.mkDerivation { enableParallelBuilding = true; - meta = with lib; { + meta = { description = "Realtek rtl8821cu driver"; homepage = "https://github.com/morrownr/8821cu-20210916"; - license = licenses.gpl2Only; - platforms = platforms.linux; - maintainers = [ maintainers.contrun ]; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ contrun ]; }; }