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

28 lines
683 B
Nix
Raw Normal View History

2019-05-28 12:29:51 +01:00
{ stdenv, fetchFromGitHub, curl, openssl, zlib }:
stdenv.mkDerivation rec {
pname = "hcxtools";
2020-06-26 12:32:49 +01:00
version = "6.0.3";
2019-05-28 12:29:51 +01:00
src = fetchFromGitHub {
owner = "ZerBea";
repo = pname;
rev = version;
2020-06-26 12:32:49 +01:00
sha256 = "0s9l5mvzcv6hnj7h28piabnm66b09hk2l57vb85ny35w99hzpkc0";
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";
2020-04-03 20:04:02 +01:00
homepage = "https://github.com/ZerBea/hcxtools";
2019-05-28 12:29:51 +01:00
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ dywedir ];
};
}