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

24 lines
630 B
Nix
Raw Normal View History

2012-08-11 17:54:44 +00:00
{stdenv, fetchurl, libnl, pkgconfig}:
stdenv.mkDerivation rec {
2018-01-06 15:39:17 +00:00
name = "iw-4.14";
2012-08-11 17:54:44 +00:00
src = fetchurl {
url = "https://www.kernel.org/pub/software/network/iw/${name}.tar.xz";
2018-01-06 15:39:17 +00:00
sha256 = "12ddd6vh6vs97135bnlyr0szv7hvpbnmfh48584frzab0z0725ph";
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;
};
}