2012-08-11 18:54:44 +01:00
|
|
|
{stdenv, fetchurl, libnl, pkgconfig}:
|
|
|
|
|
2013-06-02 13:31:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-02-02 08:43:17 +00:00
|
|
|
pname = "iw";
|
2019-02-05 04:18:03 +00:00
|
|
|
version = "5.0.1";
|
2012-08-11 18:54:44 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-02-02 08:43:17 +00:00
|
|
|
url = "https://www.kernel.org/pub/software/network/${pname}/${pname}-${version}.tar.xz";
|
2019-02-05 04:18:03 +00:00
|
|
|
sha256 = "03awbfrr9i78vgwsa6z2c8g14mia9z8qzrvzxar2ad9299wylf0y";
|
2012-08-11 18:54:44 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libnl ];
|
2012-08-11 18:54:44 +01:00
|
|
|
|
2019-02-02 08:43:17 +00:00
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
2012-08-11 18:54:44 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Tool to use nl80211";
|
|
|
|
homepage = http://wireless.kernel.org/en/users/Documentation/iw;
|
2014-12-20 23:00:35 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|