rtlwifi_new: init at 2016-09-12

This commit is contained in:
Marsel
2016-09-18 22:36:49 +03:00
parent 3afe2061a2
commit 52dd323047
4 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{ stdenv, lib, linuxPackages }:
with lib;
stdenv.mkDerivation rec {
name = "rtlwifi_new-firmware-${linuxPackages.rtlwifi_new.version}";
inherit (linuxPackages.rtlwifi_new) src;
dontBuild = true;
installPhase = ''
mkdir -p "$out/lib/firmware"
cp -rf firmware/rtlwifi/ "$out/lib/firmware"
'';
meta = {
description = "Firmware for the newest Realtek rtlwifi codes";
inherit (src.meta) homepage;
license = licenses.unfreeRedistributableFirmware;
platforms = with platforms; linux;
maintainers = with maintainers; [ tvorog ];
};
}