164e1a7ff2
versions, but they're apparently for Linux >= 2.6.29 (e.g. they provide iwlwifi-3945-2.ucode instead of iwlwifi-3945-1.ucode). svn path=/nixpkgs/trunk/; revision=13771
20 lines
495 B
Nix
20 lines
495 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "iwlwifi-3945-ucode-15.28.1.8";
|
|
|
|
src = fetchurl {
|
|
url = http://www.intellinuxwireless.org/iwlwifi/downloads/iwlwifi-3945-ucode-15.28.1.8.tgz;
|
|
sha256 = "0pwilsk8m9f5ihlp3wlam485a52lkbj2di5990bnz2m6ina9j8v2";
|
|
};
|
|
|
|
buildPhase = "true";
|
|
|
|
installPhase = "ensureDir $out; chmod -x *; cp * $out";
|
|
|
|
meta = {
|
|
description = "Firmware for the Intel 3945ABG wireless card";
|
|
homepage = http://intellinuxwireless.org/;
|
|
};
|
|
}
|