* Firmware for the Intel 5000 wireless cards.
svn path=/nixpkgs/trunk/; revision=15395
This commit is contained in:
parent
16da00e64d
commit
fe1d110fc2
@ -0,0 +1,30 @@
|
|||||||
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "iwlwifi-5000-ucode-5.4.A.11";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://intellinuxwireless.org/iwlwifi/downloads/${name}.tar.gz";
|
||||||
|
sha256 = "0mbxfl2phjv5wa6ngml4yg6wn8yjva843i91532fr75rd6z78fxl";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildPhase = "true";
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
ensureDir "$out"
|
||||||
|
chmod -x *
|
||||||
|
cp * "$out"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Firmware for the Intel 5000 wireless card";
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
This package provides version 1 of the Intel wireless card
|
||||||
|
firmware, for Linux up to 2.6.26. It contains the
|
||||||
|
`iwlwifi-5000-1.ucode' file.
|
||||||
|
'';
|
||||||
|
|
||||||
|
homepage = http://intellinuxwireless.org/;
|
||||||
|
};
|
||||||
|
}
|
@ -4668,6 +4668,10 @@ let
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
iwlwifi5000ucode = import ../os-specific/linux/firmware/iwlwifi-5000-ucode {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
jfsrec = builderDefsPackage (selectVersion ../os-specific/linux/jfsrec "svn-7"){
|
jfsrec = builderDefsPackage (selectVersion ../os-specific/linux/jfsrec "svn-7"){
|
||||||
inherit boost;
|
inherit boost;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user