2009-04-29 16:50:59 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-03-11 15:07:23 +01:00
|
|
|
name = "iwlwifi-5000-ucode-8.83.5.1-1";
|
2009-04-29 16:50:59 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-03-11 15:07:23 +01:00
|
|
|
url = "http://www.intellinuxwireless.org/iwlwifi/downloads/${name}.tar.gz";
|
|
|
|
sha256 = "0n4f6wsppspvvdpcab52n2piczhgfq7a4y7gazxzzlj5halchnx3";
|
2009-04-29 16:50:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildPhase = "true";
|
|
|
|
|
|
|
|
installPhase = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p "$out"
|
2009-04-29 16:50:59 +02:00
|
|
|
chmod -x *
|
|
|
|
cp * "$out"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Firmware for the Intel 5000 wireless card";
|
|
|
|
|
|
|
|
longDescription = ''
|
2012-03-11 15:07:23 +01:00
|
|
|
This package provides version 5 of the Intel wireless card
|
|
|
|
firmware. It contains the `iwlwifi-5000-5.ucode' file.
|
2009-04-29 16:50:59 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://intellinuxwireless.org/;
|
|
|
|
};
|
|
|
|
}
|