800f4d31e9
svn path=/nixpkgs/trunk/; revision=11770
28 lines
616 B
Nix
28 lines
616 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "iwlwifi-4965-ucode-4.44.17";
|
|
|
|
src = fetchurl {
|
|
url = "http://intellinuxwireless.org/iwlwifi/downloads/" + name + ".tgz";
|
|
sha256 = "1mfnxsp58jvh0njvwaxrkbiggbzr4jd0hk314hxfwyjpjdd2hj6w";
|
|
};
|
|
|
|
buildPhase = "true";
|
|
|
|
installPhase = ''
|
|
ensureDir "$out"
|
|
chmod -x *
|
|
cp * "$out"
|
|
|
|
# The driver expects the `-1' in the file name.
|
|
cd "$out"
|
|
ln -s iwlwifi-4965.ucode iwlwifi-4965-1.ucode
|
|
'';
|
|
|
|
meta = {
|
|
description = "Firmware for the Intel 4965ABG wireless card";
|
|
homepage = http://intellinuxwireless.org/;
|
|
};
|
|
}
|