nixpkgs/pkgs/tools/security/hcxtools/default.nix

28 lines
681 B
Nix
Raw Normal View History

2019-05-28 12:29:51 +01:00
{ stdenv, fetchFromGitHub, curl, openssl, zlib }:
stdenv.mkDerivation rec {
pname = "hcxtools";
2019-12-23 14:03:24 +00:00
version = "5.3.0";
2019-05-28 12:29:51 +01:00
src = fetchFromGitHub {
owner = "ZerBea";
repo = pname;
rev = version;
2019-12-23 14:03:24 +00:00
sha256 = "1pqvxncpcnwxs89imma01ry30bz7cjifm8wz1s80yclkxxf80php";
2019-05-28 12:29:51 +01:00
};
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 ];
};
}