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

23 lines
602 B
Nix
Raw Normal View History

2012-08-11 18:54:44 +01:00
{stdenv, fetchurl, libnl, pkgconfig}:
stdenv.mkDerivation rec {
2015-06-09 01:41:10 +01:00
name = "iw-4.1";
2012-08-11 18:54:44 +01:00
src = fetchurl {
url = "https://www.kernel.org/pub/software/network/iw/${name}.tar.xz";
2015-06-09 01:41:10 +01:00
sha256 = "0jx3s5wdvm2qxd3h883fnyjsb1c29qcsz1r19bc029g8v2nalr2i";
2012-08-11 18:54:44 +01:00
};
buildInputs = [ libnl pkgconfig ];
2015-06-09 01:41:10 +01:00
makeFlags = [ "PREFIX=\${out}" ];
2012-08-11 18:54:44 +01:00
meta = {
description = "Tool to use nl80211";
homepage = http://wireless.kernel.org/en/users/Documentation/iw;
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;
};
}