a8bdb8adc8
svn path=/nixpkgs/trunk/; revision=10734
20 lines
479 B
Nix
20 lines
479 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";
|
|
|
|
meta = {
|
|
description = "Firmware for the Intel 4965ABG wireless card";
|
|
homepage = http://intellinuxwireless.org/;
|
|
};
|
|
}
|