My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/security/hcxtools/default.nix

28 lines
730 B

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