Add Intel 4965 wireless firmware.
svn path=/nixpkgs/trunk/; revision=10734
This commit is contained in:
parent
1bd2f3e93e
commit
a8bdb8adc8
@ -0,0 +1,19 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "iwlwifi-4965-ucode-4.44.17";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://intellinuxwireless.org/iwlwifi/downloads/" + name + ".tgz";
|
||||
sha256 = "1mfnxsp58jvh0njvwaxrkbiggbzr4jd0hk314hxfwyjpjdd2hj6w";
|
||||
};
|
||||
|
||||
buildPhase = "true";
|
||||
|
||||
installPhase = "ensureDir $out; chmod -x *; cp * $out";
|
||||
|
||||
meta = {
|
||||
description = "Firmware for the Intel 4965ABG wireless card";
|
||||
homepage = http://intellinuxwireless.org/;
|
||||
};
|
||||
}
|
@ -3776,6 +3776,10 @@ rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
iwlwifi4965ucode = import ../os-specific/linux/firmware/iwlwifi-4965-ucode {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
kbd = import ../os-specific/linux/kbd {
|
||||
inherit fetchurl stdenv bison flex;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user