about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/iw
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2019-08-10 16:32:54 +0200
committerMichael Weiss <dev.primeos@gmail.com>2019-08-10 16:49:19 +0200
commit4b0b2579df6edf14f674059d91e13e19c6e09e0c (patch)
treefce49c7e4dad18917b10ffc0b3a4561a7d511198 /pkgs/os-specific/linux/iw
parent7680b512cb8a9e0cac6c54b2096f1b5c4eb9e34c (diff)
iw: 5.0.1 -> 5.3
Diffstat (limited to 'pkgs/os-specific/linux/iw')
-rw-r--r--pkgs/os-specific/linux/iw/default.nix16
1 files changed, 11 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/iw/default.nix b/pkgs/os-specific/linux/iw/default.nix
index 387792b863134..ad965f95c94b6 100644
--- a/pkgs/os-specific/linux/iw/default.nix
+++ b/pkgs/os-specific/linux/iw/default.nix
@@ -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;
   };
 }