Merge pull request #62149 from dywedir/hcxtools
hcxtools: init at 5.1.4
This commit is contained in:
commit
f71eeb3735
27
pkgs/tools/security/hcxtools/default.nix
Normal file
27
pkgs/tools/security/hcxtools/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub, curl, openssl, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hcxtools";
|
||||
version = "5.1.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ZerBea";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1bkl0j6m5q091fas99s83aclcc5kfwacmkgmyg8565z2npvnj7nf";
|
||||
};
|
||||
|
||||
buildInputs = [ curl openssl zlib ];
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=${placeholder "out"}"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Tools for capturing wlan traffic and conversion to hashcat and John the Ripper formats";
|
||||
homepage = https://github.com/ZerBea/hcxtools;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ dywedir ];
|
||||
};
|
||||
}
|
@ -3533,6 +3533,8 @@ in
|
||||
|
||||
hardinfo = callPackage ../tools/system/hardinfo { };
|
||||
|
||||
hcxtools = callPackage ../tools/security/hcxtools { };
|
||||
|
||||
hdapsd = callPackage ../os-specific/linux/hdapsd { };
|
||||
|
||||
hdaps-gl = callPackage ../tools/misc/hdaps-gl { };
|
||||
|
Loading…
Reference in New Issue
Block a user