3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/iw/default.nix

23 lines
602 B
Nix
Raw Normal View History

2012-08-11 18:54:44 +01:00
{stdenv, fetchurl, libnl, pkgconfig}:
stdenv.mkDerivation rec {
2017-06-30 13:25:10 +01:00
name = "iw-4.9";
2012-08-11 18:54:44 +01:00
src = fetchurl {
url = "https://www.kernel.org/pub/software/network/iw/${name}.tar.xz";
2017-06-30 13:25:10 +01:00
sha256 = "1klpvv98bnx1zm6aqalnri2vd7w80scmdaxr2qnblb6mz82whk1j";
2012-08-11 18:54:44 +01:00
};
buildInputs = [ libnl pkgconfig ];
2015-06-09 01:41:10 +01:00
makeFlags = [ "PREFIX=\${out}" ];
2012-08-11 18:54:44 +01:00
meta = {
description = "Tool to use nl80211";
homepage = http://wireless.kernel.org/en/users/Documentation/iw;
license = stdenv.lib.licenses.isc;
2012-08-11 18:54:44 +01:00
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}