Skip to content

Commit

Permalink
Merge pull request #75699 from scaredmushroom/aircrack-ng_release-19.09
Browse files Browse the repository at this point in the history
backport: aircrack-ng: fixed missing dependency for airmon-ng
  • Loading branch information
fpletz committed Dec 15, 2019
2 parents 931a430 + 6d44cb6 commit c5f385d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/networking/aircrack-ng/default.nix
Original file line number Diff line number Diff line change
@@ -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";
Expand All @@ -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
]}
'';

Expand Down

0 comments on commit c5f385d

Please sign in to comment.