nixpkgs/pkgs/tools/security/hcxtools/default.nix
R. RyanTM e0d0188986 hcxtools: 5.2.0 -> 5.2.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/hcxtools/versions
2019-09-26 15:34:14 -07:00

28 lines
681 B
Nix

{ stdenv, fetchFromGitHub, curl, openssl, zlib }:
stdenv.mkDerivation rec {
pname = "hcxtools";
version = "5.2.2";
src = fetchFromGitHub {
owner = "ZerBea";
repo = pname;
rev = version;
sha256 = "0jschcjk9z9s3q2f7qcb4nmjmyipar3f0yqbrgmbg3jpgamahykn";
};
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 ];
};
}