linuxPackages.rtl8821ce: unstable-2021-05-28 -> unstable-2021-11-19

This fixes https://github.com/tomaspinho/rtl8821ce/issues/244, making compilation with Linux kernel 5.15+ succeed.
This commit is contained in:
IvarWithoutBones 2021-11-17 21:17:11 +01:00
parent f54808ee59
commit d00b852a90

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "rtl8821ce"; pname = "rtl8821ce";
version = "${kernel.version}-unstable-2021-05-28"; version = "${kernel.version}-unstable-2021-11-19";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "tomaspinho"; owner = "tomaspinho";
repo = "rtl8821ce"; repo = "rtl8821ce";
rev = "f93db734666f75ebf65e44ceb943c19b598b1647"; rev = "ca204c60724d23ab10244f920d4e50759ed1affb";
sha256 = "sha256-cqXV52U+6Jl9Jje1nEOYDvmH4rgA1QdrwNCfYeul3hU="; sha256 = "18ma8a8h1l90dss0k6al7q6plwr57jc9g67p22g9917k1jfbhm97";
}; };
hardeningDisable = [ "pic" ]; hardeningDisable = [ "pic" ];
@ -36,6 +36,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Only; license = licenses.gpl2Only;
platforms = platforms.linux; platforms = platforms.linux;
broken = stdenv.isAarch64; broken = stdenv.isAarch64;
maintainers = with maintainers; [ hhm ]; maintainers = with maintainers; [ hhm ivar ];
}; };
} }