hcxdumptool: init at 6.0.5
This commit is contained in:
parent
1ad005458f
commit
1c951b1484
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/security/hcxdumptool/default.nix
Normal file
25
pkgs/tools/security/hcxdumptool/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{ stdenv, lib, fetchFromGitHub, openssl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "hxcdumptool";
|
||||||
|
version = "6.0.5";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ZerBea";
|
||||||
|
repo = "hcxdumptool";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0rh19lblz8wp8q2x123nlwvxq1pjq9zw12w18z83v2l2knjbc524";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ openssl ];
|
||||||
|
|
||||||
|
installFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/ZerBea/hcxdumptool";
|
||||||
|
description = "Small tool to capture packets from wlan devices";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ danielfullmer ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4039,6 +4039,8 @@ in
|
||||||
|
|
||||||
hcxtools = callPackage ../tools/security/hcxtools { };
|
hcxtools = callPackage ../tools/security/hcxtools { };
|
||||||
|
|
||||||
|
hcxdumptool = callPackage ../tools/security/hcxdumptool { };
|
||||||
|
|
||||||
hdapsd = callPackage ../os-specific/linux/hdapsd { };
|
hdapsd = callPackage ../os-specific/linux/hdapsd { };
|
||||||
|
|
||||||
hdaps-gl = callPackage ../tools/misc/hdaps-gl { };
|
hdaps-gl = callPackage ../tools/misc/hdaps-gl { };
|
||||||
|
|
Loading…
Reference in a new issue