1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/iw/default.nix

25 lines
602 B
Nix
Raw Normal View History

2012-08-11 18:54:44 +01:00
{stdenv, fetchurl, libnl, pkgconfig}:
stdenv.mkDerivation rec {
2014-02-24 20:30:47 +00:00
name = "iw-3.14";
2012-08-11 18:54:44 +01:00
src = fetchurl {
url = "https://www.kernel.org/pub/software/network/iw/${name}.tar.xz";
2014-02-24 20:30:47 +00:00
sha256 = "16fr13cl02702d9yjqlgvnxvpv0w0mqn0acba39iwn2lln5b4747";
2012-08-11 18:54:44 +01:00
};
buildInputs = [ libnl pkgconfig ];
preBuild = "
makeFlagsArray=(PREFIX=$out)
";
meta = {
description = "Tool to use nl80211";
homepage = http://wireless.kernel.org/en/users/Documentation/iw;
license = "BSD";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}