mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
commit
a808baa5e5
1 changed files with 5 additions and 4 deletions
|
@ -1,17 +1,18 @@
|
|||
{stdenv, fetchurl, libnl, pkgconfig}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "iw-4.14";
|
||||
pname = "iw";
|
||||
version = "5.0.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.kernel.org/pub/software/network/iw/${name}.tar.xz";
|
||||
sha256 = "12ddd6vh6vs97135bnlyr0szv7hvpbnmfh48584frzab0z0725ph";
|
||||
url = "https://www.kernel.org/pub/software/network/${pname}/${pname}-${version}.tar.xz";
|
||||
sha256 = "03awbfrr9i78vgwsa6z2c8g14mia9z8qzrvzxar2ad9299wylf0y";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ libnl ];
|
||||
|
||||
makeFlags = [ "PREFIX=\${out}" ];
|
||||
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
||||
|
||||
meta = {
|
||||
description = "Tool to use nl80211";
|
||||
|
|
Loading…
Reference in a new issue