summaryrefslogtreecommitdiffstats
path: root/pkgs/os-specific/linux/firmware/iwlwifi-6000-ucode/default.nix
blob: e5f3effa4b736340cba4a68b0f15a3d5a2de2897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "iwlwifi-6000-ucode-9.221.4.1";

  src = fetchurl {
    url = "http://intellinuxwireless.org/iwlwifi/downloads/${name}.tgz";
    sha256 = "7f04623231663dc4ee63df32fd890bfa9514dce1fab9dc7a25fda90350da836b";
  };

  buildPhase = "true";

  installPhase = ''
    mkdir -p "$out"
    chmod -x *
    cp * "$out"
  '';

  meta = {
    description = "Firmware for the Intel 6000 Series wireless card";

    longDescription = ''
      This package provides the Intel 6000 Series wireless card
      firmware. It contains the `iwlwifi-6000-4.ucode' file.
    '';

    homepage = http://intellinuxwireless.org/;
  };
}