Add Intel 4965 wireless firmware.

svn path=/nixpkgs/trunk/; revision=10734
This commit is contained in:
Ludovic Courtès 2008-02-18 16:15:51 +00:00
parent 1bd2f3e93e
commit a8bdb8adc8
2 changed files with 23 additions and 0 deletions

View File

@ -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/;
};
}

View File

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