Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

rtl8852bu: f6aaa3c -> 1acc7aa

+6 -6
+6 -6
pkgs/os-specific/linux/rtl8852bu/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, kernel, bc, nukeReferences }: 2 2 3 - stdenv.mkDerivation { 3 + stdenv.mkDerivation rec { 4 4 pname = "rtl8852bu"; 5 - version = "${kernel.version}-unstable-2024-03-28"; 5 + version = "${kernel.version}-unstable-2024-05-25"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "morrownr"; 9 - repo = "rtl8852bu"; 10 - rev = "f6aaa3c0094c541d9b0347926c76c1e9cc4a49d1"; 11 - hash = "sha256-Jbd6nixo873LU74klhhQU1qD3ahxEnywdqcF89LTRxc="; 9 + repo = pname; 10 + rev = "1acc7aa085bffec21a91fdc9e293378e06bf25e7"; 11 + hash = "sha256-22vzAdzzM5YnfU8kRWSK3HXxw6BA4FOWXLdWEb7T5IE="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ bc nukeReferences ] ++ kernel.moduleBuildDependencies; ··· 42 42 enableParallelBuilding = true; 43 43 44 44 meta = with lib; { 45 - description = "Driver for Realtek rtl8852au and rtl8832bu chipsets, provides the 8852au mod"; 45 + description = "Driver for Realtek rtl8852bu and rtl8832bu chipsets, provides the 8852bu mod"; 46 46 homepage = "https://github.com/morrownr/rtl8852bu"; 47 47 license = licenses.gpl2Only; 48 48 platforms = platforms.linux;