nixpkgs/pkgs/tools/security/hcxtools/default.nix
2023-07-04 12:59:23 +00:00

29 lines
730 B
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config, curl, openssl, zlib }:
stdenv.mkDerivation rec {
pname = "hcxtools";
version = "6.3.1";
src = fetchFromGitHub {
owner = "ZerBea";
repo = pname;
rev = version;
sha256 = "sha256-EDTxzstQwQy7MSkdi1nQis8qEm8ZPblkeOkM8B48IRE=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ curl openssl zlib ];
makeFlags = [
"PREFIX=${placeholder "out"}"
];
meta = with 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 ];
};
}