nixpkgs/pkgs/os-specific/linux/iw/default.nix

25 lines
620 B
Nix
Raw Normal View History

2012-08-11 17:54:44 +00:00
{stdenv, fetchurl, libnl, pkgconfig}:
stdenv.mkDerivation rec {
2014-09-10 04:29:34 +00:00
name = "iw-3.15";
2012-08-11 17:54:44 +00:00
src = fetchurl {
url = "https://www.kernel.org/pub/software/network/iw/${name}.tar.xz";
2014-09-10 04:29:34 +00:00
sha256 = "12jby9nv5nypadgdksbqw0y2kfm3j47zw7a3rwmy56d7rs90lp5x";
2012-08-11 17:54:44 +00:00
};
buildInputs = [ libnl pkgconfig ];
preBuild = "
makeFlagsArray=(PREFIX=$out)
";
meta = {
description = "Tool to use nl80211";
homepage = http://wireless.kernel.org/en/users/Documentation/iw;
license = stdenv.lib.licenses.isc;
2012-08-11 17:54:44 +00:00
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}