summary refs log tree commit diff
diff options
context:
space:
mode:
authorJeremie Huchet <jeremiehuchet@users.noreply.github.com>2023-07-23 14:10:25 +0200
committerJeremie Huchet <jeremiehuchet@users.noreply.github.com>2023-07-23 14:21:09 +0200
commit710796a1b547784852a6713544653a28196bf942 (patch)
treee72ba0d4604232b14ae042a908d34c49763e83e5
parent70856388bc935747bf15ec5febab926159440f22 (diff)
downloadnixpkgs-710796a1b547784852a6713544653a28196bf942.tar
nixpkgs-710796a1b547784852a6713544653a28196bf942.tar.gz
nixpkgs-710796a1b547784852a6713544653a28196bf942.tar.bz2
nixpkgs-710796a1b547784852a6713544653a28196bf942.tar.lz
nixpkgs-710796a1b547784852a6713544653a28196bf942.tar.xz
nixpkgs-710796a1b547784852a6713544653a28196bf942.tar.zst
nixpkgs-710796a1b547784852a6713544653a28196bf942.zip
linuxPackages.rtl8821au: 2023-07-20 -> 2023-07-23
fix module build with kernel 6.1.39+

Diff: https://github.com/morrownr/8821au-20210708/compare/072413261b6966b0c666898e69d7d41fb281094f...0dc022287b0ab534efa885881eaa65c5503291be
-rw-r--r--pkgs/os-specific/linux/rtl8821au/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/rtl8821au/default.nix b/pkgs/os-specific/linux/rtl8821au/default.nix
index 509c2470d8f..b89cddbfc73 100644
--- a/pkgs/os-specific/linux/rtl8821au/default.nix
+++ b/pkgs/os-specific/linux/rtl8821au/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation {
   pname = "rtl8821au";
-  version = "${kernel.version}-unstable-2023-07-20";
+  version = "${kernel.version}-unstable-2023-07-23";
 
   src = fetchFromGitHub {
     owner = "morrownr";
     repo = "8821au-20210708";
-    rev = "072413261b6966b0c666898e69d7d41fb281094f";
-    hash = "sha256-yC9knXR+bZwQ4S22zG188b3p3iTzUAFbvSqOFdne7po=";
+    rev = "0dc022287b0ab534efa885881eaa65c5503291be";
+    hash = "sha256-pLRBWdqlv9A39VbCS8dymTCJHcwJooqD8v6mTbOsBz0=";
   };
 
   nativeBuildInputs = [ bc nukeReferences ] ++ kernel.moduleBuildDependencies;