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

23 lines
602 B
Nix
Raw Normal View History

2012-08-11 17:54:44 +00:00
{stdenv, fetchurl, libnl, pkgconfig}:
stdenv.mkDerivation rec {
2016-04-13 02:53:24 +00:00
name = "iw-4.3";
2012-08-11 17:54:44 +00:00
src = fetchurl {
url = "https://www.kernel.org/pub/software/network/iw/${name}.tar.xz";
2016-04-13 02:53:24 +00:00
sha256 = "085jyvrxzarvn5jl0fk618jjxy50nqx7ifngszc4jxk6a4ddibd6";
2012-08-11 17:54:44 +00:00
};
buildInputs = [ libnl pkgconfig ];
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;
};
}