Merge pull request #66442 from primeos/iw

iw: 5.0.1 -> 5.3
This commit is contained in:
Marek Mahut 2019-08-10 22:44:42 +02:00 committed by GitHub
commit 85147685a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,12 @@
{stdenv, fetchurl, libnl, pkgconfig}:
{ stdenv, fetchurl, pkgconfig, libnl }:
stdenv.mkDerivation rec {
pname = "iw";
version = "5.0.1";
version = "5.3";
src = fetchurl {
url = "https://www.kernel.org/pub/software/network/${pname}/${pname}-${version}.tar.xz";
sha256 = "03awbfrr9i78vgwsa6z2c8g14mia9z8qzrvzxar2ad9299wylf0y";
sha256 = "1m85ap8hwzfs7xf9r0v5d55ra4mhw45f6vclc7j6gsldpibyibq4";
};
nativeBuildInputs = [ pkgconfig ];
@ -16,9 +16,15 @@ stdenv.mkDerivation rec {
meta = {
description = "Tool to use nl80211";
homepage = http://wireless.kernel.org/en/users/Documentation/iw;
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;
license = stdenv.lib.licenses.isc;
maintainers = with stdenv.lib.maintainers; [viric];
maintainers = with stdenv.lib.maintainers; [ viric primeos ];
platforms = with stdenv.lib.platforms; linux;
};
}