mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
Add Firmware for the Intel 1000 wireless card.
svn path=/nixpkgs/trunk/; revision=19132
This commit is contained in:
parent
67f39a0ca9
commit
feff3bfa1b
@ -0,0 +1,31 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "iwlwifi-1000-ucode-128.50.3.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://intellinuxwireless.org/iwlwifi/downloads/${name}.tgz";
|
||||
sha256 = "7e81ddad18acec19364c9df22496e8afae99a2e1490b2b178e420b52d443728d";
|
||||
};
|
||||
|
||||
buildPhase = "true";
|
||||
|
||||
installPhase = ''
|
||||
ensureDir "$out"
|
||||
chmod -x *
|
||||
cp * "$out"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Firmware for the Intel 1000 wireless card";
|
||||
|
||||
longDescription = ''
|
||||
This package provides version 3 of the Intel wireless card
|
||||
firmware, for Linux up to 2.6.26. It contains the
|
||||
`iwlwifi-1000-3.ucode' file, which is loaded by the `iwlagn'
|
||||
driver found in recent kernels.
|
||||
'';
|
||||
|
||||
homepage = http://intellinuxwireless.org/;
|
||||
};
|
||||
}
|
@ -5351,6 +5351,10 @@ let
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
iwlwifi1000ucode = import ../os-specific/linux/firmware/iwlwifi-1000-ucode {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
iwlwifi3945ucode = import ../os-specific/linux/firmware/iwlwifi-3945-ucode {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user