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

24 lines
629 B
Nix
Raw Normal View History

2012-08-11 17:54:44 +00:00
{stdenv, fetchurl, libnl, pkgconfig}:
stdenv.mkDerivation rec {
2017-06-30 12:25:10 +00:00
name = "iw-4.9";
2012-08-11 17:54:44 +00:00
src = fetchurl {
url = "https://www.kernel.org/pub/software/network/iw/${name}.tar.xz";
2017-06-30 12:25:10 +00:00
sha256 = "1klpvv98bnx1zm6aqalnri2vd7w80scmdaxr2qnblb6mz82whk1j";
2012-08-11 17:54:44 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libnl ];
2012-08-11 17:54:44 +00:00
2015-06-09 00:41:10 +00:00
makeFlags = [ "PREFIX=\${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;
};
}