1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00
nixpkgs/pkgs/os-specific/linux/iw/default.nix

25 lines
602 B
Nix
Raw Normal View History

2012-08-11 18:54:44 +01:00
{stdenv, fetchurl, libnl, pkgconfig}:
stdenv.mkDerivation rec {
2014-09-10 05:29:34 +01:00
name = "iw-3.15";
2012-08-11 18:54:44 +01:00
src = fetchurl {
url = "https://www.kernel.org/pub/software/network/iw/${name}.tar.xz";
2014-09-10 05:29:34 +01:00
sha256 = "12jby9nv5nypadgdksbqw0y2kfm3j47zw7a3rwmy56d7rs90lp5x";
2012-08-11 18:54:44 +01:00
};
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;
};
}