about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/firmware/iwlwifi-4965-ucode/version-2.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/firmware/iwlwifi-4965-ucode/version-2.nix')
-rw-r--r--pkgs/os-specific/linux/firmware/iwlwifi-4965-ucode/version-2.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/os-specific/linux/firmware/iwlwifi-4965-ucode/version-2.nix b/pkgs/os-specific/linux/firmware/iwlwifi-4965-ucode/version-2.nix
deleted file mode 100644
index 3e15374c65f02..0000000000000
--- a/pkgs/os-specific/linux/firmware/iwlwifi-4965-ucode/version-2.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{stdenv, fetchurl}:
-
-stdenv.mkDerivation rec {
-  name = "iwlwifi-4965-ucode-228.61.2.24";
-  
-  src = fetchurl {
-    url = "http://wireless.kernel.org/en/users/Drivers/iwlegacy?action=AttachFile&do=get&target=iwlwifi-4965-ucode-228.61.2.24.tgz";
-    name = "iwlwifi-4965-ucode-228.61.2.24.tgz";
-    sha256 = "1n5af3cci0v40w4gr0hplqr1lfvhghlbzdbf60d6185vpcny2l5m";
-  };
-  
-  buildPhase = "true";
-
-  installPhase = ''
-    mkdir -p "$out"
-    chmod -x *
-    cp * "$out"
-  '';
-  
-  meta = {
-    description = "Firmware for the Intel 4965ABG wireless card, for Linux 2.6.27+";
-
-    longDescription = ''
-      This package provides version 2 of the Intel wireless card
-      firmware, for Linux 2.6.27 and later.  It contains the
-      `iwlwifi-4965-2.ucode' file, which is loaded by the `iwlagn'
-      driver found in recent kernels.
-    '';
-
-    homepage = http://intellinuxwireless.org/;
-  };
-}