summary refs log tree commit diff
path: root/pkgs/os-specific/linux/iw/default.nix
blob: 7110754357c1eed86bf2690e3a9846f5112adf69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{stdenv, fetchurl, libnl, pkgconfig}:

stdenv.mkDerivation {
  name = "iw-3.6";

  src = fetchurl {
    url = http://wireless.kernel.org/download/iw/iw-3.6.tar.bz2;
    sha256 = "0my8nv6liya0b15nqn8wq2kxwjy7x6k65a9x1121zwqxq5m064fz";
  };

  buildInputs = [ libnl pkgconfig ];

  preBuild = "
    makeFlagsArray=(PREFIX=$out)
  ";

  meta = {
    description = "Tool to use nl80211";
    homepage = http://wireless.kernel.org/en/users/Documentation/iw;
    license = "BSD";
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
  };
}