2019-08-10 16:32:54 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libnl }:
|
2012-08-11 19:54:44 +02:00
|
|
|
|
2013-06-02 14:31:56 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-02-02 09:43:17 +01:00
|
|
|
pname = "iw";
|
2019-12-06 00:27:42 +01:00
|
|
|
version = "5.4";
|
2012-08-11 19:54:44 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-02-02 09:43:17 +01:00
|
|
|
url = "https://www.kernel.org/pub/software/network/${pname}/${pname}-${version}.tar.xz";
|
2019-12-06 00:27:42 +01:00
|
|
|
sha256 = "0prrgb11pjrr6dw71v7nx2bic127qzrjifvz183v3mw8f1kryim2";
|
2012-08-11 19:54:44 +02:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libnl ];
|
2012-08-11 19:54:44 +02:00
|
|
|
|
2019-02-02 09:43:17 +01:00
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
2012-08-11 19:54:44 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Tool to use nl80211";
|
2019-08-10 16:32:54 +02:00
|
|
|
longDescription = ''
|
|
|
|
iw is a new nl80211 based CLI configuration utility for wireless devices.
|
|
|
|
It supports all new drivers that have been added to the kernel recently.
|
|
|
|
The old tool iwconfig, which uses Wireless Extensions interface, is
|
|
|
|
deprecated and it's strongly recommended to switch to iw and nl80211.
|
|
|
|
'';
|
|
|
|
homepage = https://wireless.wiki.kernel.org/en/users/Documentation/iw;
|
2014-12-21 00:00:35 +01:00
|
|
|
license = stdenv.lib.licenses.isc;
|
2019-08-10 16:32:54 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ viric primeos ];
|
2012-08-11 19:54:44 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|