Merge pull request #75698 from scaredmushroom/aircrack-ng_master

aircrack-ng: fixed missing dependency for airmon-ng
This commit is contained in:
Franz Pletz 2019-12-15 23:34:20 +00:00 committed by GitHub
commit a991de49f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
]}
'';