Skip to content

Commit

Permalink
Merge pull request NixOS#55164 from dtzWill/update/iw-5
Browse files Browse the repository at this point in the history
iw: 4.14 -> 5.0.1
  • Loading branch information
dtzWill committed Feb 17, 2019
2 parents e6d26d8 + 17ac907 commit a808baa
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkgs/os-specific/linux/iw/default.nix
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit a808baa

Please sign in to comment.