mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
aircrack-ng: fixed missing dependency for airmon-ng
This commit is contained in:
parent
5425557214
commit
2978ca2180
|
@ -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
|
||||
]}
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue