rtlwifi_new: fix build & rename to rtw88
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
{ stdenvNoCC, lib, linuxPackages }:
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "rtw88-firmware";
|
||||
inherit (linuxPackages.rtw88) version src;
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/lib/firmware/rtw88
|
||||
cp *.bin $out/lib/firmware/rtw88
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Firmware for the newest Realtek rtlwifi codes";
|
||||
homepage = "https://github.com/lwfinger/rtw88";
|
||||
license = licenses.unfreeRedistributableFirmware;
|
||||
maintainers = with maintainers; [ tvorog ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user