mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
23 lines
602 B
Nix
23 lines
602 B
Nix
{stdenv, fetchurl, libnl, pkgconfig}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "iw-4.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.kernel.org/pub/software/network/iw/${name}.tar.xz";
|
|
sha256 = "085jyvrxzarvn5jl0fk618jjxy50nqx7ifngszc4jxk6a4ddibd6";
|
|
};
|
|
|
|
buildInputs = [ libnl pkgconfig ];
|
|
|
|
makeFlags = [ "PREFIX=\${out}" ];
|
|
|
|
meta = {
|
|
description = "Tool to use nl80211";
|
|
homepage = http://wireless.kernel.org/en/users/Documentation/iw;
|
|
license = stdenv.lib.licenses.isc;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|