5144a19987
There were a few merge conflicts due to ensureDir->mkdir -p migration svn path=/nixpkgs/branches/stdenv-updates/; revision=32174
18 lines
415 B
Nix
18 lines
415 B
Nix
{stdenv, firmwareLinuxNonfree}:
|
|
stdenv.mkDerivation {
|
|
name = "rtl8192c-fw";
|
|
src = firmwareLinuxNonfree;
|
|
|
|
phases = [ "installPhase" ];
|
|
installPhase = ''
|
|
mkdir -p $out/rtlwifi
|
|
cp "$src/rtlwifi/rtl8192cfw.bin" "$out/rtlwifi/rtl8192cfw.bin"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Firmware for the Realtek RTL8192c wireless cards";
|
|
homepage = "http://www.realtek.com";
|
|
license = "non-free";
|
|
};
|
|
}
|