My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/os-specific/linux/firmware/rtw88-firmware/default.nix

25 lines
590 B

{ 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;
};
}