aircrack-ng: fixed missing dependency for airmon-ng

This commit is contained in:
cap 2019-12-15 18:38:43 +01:00
parent 5425557214
commit 2978ca2180

View file

@ -1,6 +1,6 @@
{ stdenv, fetchurl, libpcap, openssl, zlib, wirelesstools
, iw, ethtool, pciutils, libnl, pkgconfig, makeWrapper
, autoreconfHook }:
, autoreconfHook, usbutils }:
stdenv.mkDerivation rec {
name = "aircrack-ng-1.5.2";
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
postFixup = ''
wrapProgram $out/bin/airmon-ng --prefix PATH : ${stdenv.lib.makeBinPath [
ethtool iw pciutils
ethtool iw pciutils usbutils
]}
'';