iw: 4.14 -> 5.0

This commit is contained in:
Will Dietz 2019-02-02 02:43:17 -06:00
parent 2b344e6a74
commit a2d07bc725

View File

@ -1,17 +1,18 @@
{stdenv, fetchurl, libnl, pkgconfig}: {stdenv, fetchurl, libnl, pkgconfig}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "iw-4.14"; pname = "iw";
version = "5.0";
src = fetchurl { src = fetchurl {
url = "https://www.kernel.org/pub/software/network/iw/${name}.tar.xz"; url = "https://www.kernel.org/pub/software/network/${pname}/${pname}-${version}.tar.xz";
sha256 = "12ddd6vh6vs97135bnlyr0szv7hvpbnmfh48584frzab0z0725ph"; sha256 = "1ydgdsf3iycg3mx96aygwa7gcfddi5srxinlws5yxsa2rllnq5y7";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libnl ]; buildInputs = [ libnl ];
makeFlags = [ "PREFIX=\${out}" ]; makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = { meta = {
description = "Tool to use nl80211"; description = "Tool to use nl80211";