* Firmware for the Intel 3945ABG.

svn path=/nixpkgs/trunk/; revision=10126
This commit is contained in:
Eelco Dolstra 2008-01-12 22:38:37 +00:00
parent 40ba71406b
commit ef0a521c39
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "iwlwifi-3945-ucode-2.14.1.5";
src = fetchurl {
url = http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-3945-ucode-2.14.1.5.tgz;
sha256 = "06gy21qkd4kj6pf3nsz5z3xkgmcafzrm1krywd8lbb8i56i3jkra";
};
buildPhase = "true";
installPhase = "ensureDir $out; chmod -x *; cp * $out";
meta = {
description = "Firmware for the Intel 3945ABG wireless card";
homepage = http://intellinuxwireless.org/;
};
}

View File

@ -3122,6 +3122,10 @@ rec {
inherit fetchurl stdenv kernel;
};
iwlwifi3945ucode = import ../os-specific/linux/firmware/iwlwifi-3945-ucode {
inherit fetchurl stdenv;
};
kbd = import ../os-specific/linux/kbd {
inherit fetchurl stdenv bison flex;
};