linuxPackages.rtl8821au: switch to a more maintained fork

This commit is contained in:
fortuneteller2k 2021-05-19 16:40:12 +08:00 committed by Jonathan Ringer
parent 0ae4eb262b
commit f49504d95f

View file

@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub, kernel, bc, nukeReferences }: { lib, stdenv, fetchFromGitHub, kernel, bc, nukeReferences }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "rtl8821au-${kernel.version}-${version}"; pname = "rtl8821au";
version = "5.1.5+41"; version = "${kernel.version}-unstable-2021-05-18";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "zebulon2"; owner = "morrownr";
repo = "rtl8812au"; repo = "8821au";
rev = "ecd3494c327c54110d21346ca335ef9e351cb0be"; rev = "6f6a9d5772bb2b75f18374c01c82c6b3e8e3244d";
sha256 = "1kmdxgbh0s0v9809kdsi39p0jbm5cf10ivy40h8qj9hn70g1gw8q"; sha256 = "sha256-RqtLR3sNcLXhUrNloSTRKubL1SVwzbVe73AsBYYSXNE=";
}; };
nativeBuildInputs = [ bc nukeReferences ]; nativeBuildInputs = [ bc nukeReferences ];
@ -35,9 +35,9 @@ stdenv.mkDerivation rec {
''; '';
meta = with lib; { meta = with lib; {
description = "rtl8821AU, rtl8812AU and rtl8811AU chipset driver with firmware"; description = "rtl8821AU and rtl8812AU chipset driver with firmware";
homepage = "https://github.com/zebulon2/rtl8812au"; homepage = "https://github.com/morrownr/8821au";
license = licenses.gpl2; license = licenses.gpl2Only;
platforms = [ "x86_64-linux" "i686-linux" ]; platforms = [ "x86_64-linux" "i686-linux" ];
maintainers = with maintainers; [ plchldr ]; maintainers = with maintainers; [ plchldr ];
}; };