nixpkgs/pkgs/os-specific/linux/iw/default.nix

25 lines
678 B
Nix
Raw Normal View History

2012-08-11 17:54:44 +00:00
{stdenv, fetchurl, libnl, pkgconfig}:
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 17:54:44 +00: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 17:54:44 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libnl ];
2012-08-11 17:54:44 +00:00
2019-02-02 08:43:17 +00:00
makeFlags = [ "PREFIX=${placeholder "out"}" ];
2012-08-11 17:54:44 +00:00
meta = {
description = "Tool to use nl80211";
homepage = http://wireless.kernel.org/en/users/Documentation/iw;
license = stdenv.lib.licenses.isc;
2012-08-11 17:54:44 +00:00
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}