rtw89-firmware: fixup build after rtw89 update

It didn't build since commit f170b6a85f2 from PR #206855
This is just a stop-gap measure to unblock unstable-small channel.
This commit is contained in:
Vladimír Čunát 2022-12-20 20:40:18 +01:00
parent 5ddd3c9fe3
commit 3c6d63d22c
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -1,8 +1,18 @@
{ stdenvNoCC, lib, linuxPackages }:
{ stdenvNoCC, lib, fetchFromGitHub }:
stdenvNoCC.mkDerivation {
pname = "rtw89-firmware";
inherit (linuxPackages.rtw89) version src;
# TODO: probably remove after updating linux firmware
# https://github.com/lwfinger/rtw89/commit/a2c113501a5a988683f236df1aa79ce40f29e1be
version = "unstable-2021-10-21";
src = fetchFromGitHub {
owner = "lwfinger";
repo = "rtw89";
rev = "0684157cba90e36bff5bc61a59e7e87c359b5e5c";
sha256 = "0cvawyi1ksw9xkr8pzwipsl7b8hnmrb17w5cblyicwih8fqaw632";
};
dontBuild = true;