summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorVladyslav M <dywedir@gra.red>2019-05-30 10:13:50 +0300
committerGitHub <noreply@github.com>2019-05-30 10:13:50 +0300
commitf71eeb373562ec14ae72e41bb7abc14b95cc16be (patch)
tree4078432b854a27c7cc12ea71bd4b43cdcd14cdf0 /pkgs/tools/security
parent3d7950bebd46e183e8deac2e92b6ef9b1b19a96d (diff)
parent8c3dfab331536466f72de9d5360ed652413c3b4a (diff)
Merge pull request #62149 from dywedir/hcxtools
hcxtools: init at 5.1.4
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/hcxtools/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/tools/security/hcxtools/default.nix b/pkgs/tools/security/hcxtools/default.nix
new file mode 100644
index 000000000000..275578d8cb40
--- /dev/null
+++ b/pkgs/tools/security/hcxtools/default.nix
@@ -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 ];
+ };
+}