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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
730 B
Nix
Raw Normal View History

2021-02-13 09:24:33 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config, curl, openssl, zlib }:
2019-05-28 11:29:51 +00:00
stdenv.mkDerivation rec {
pname = "hcxtools";
2023-07-04 12:59:23 +00:00
version = "6.3.1";
2019-05-28 11:29:51 +00:00
src = fetchFromGitHub {
owner = "ZerBea";
repo = pname;
rev = version;
2023-07-04 12:59:23 +00:00
sha256 = "sha256-EDTxzstQwQy7MSkdi1nQis8qEm8ZPblkeOkM8B48IRE=";
2019-05-28 11:29:51 +00:00
};
2021-02-13 09:24:33 +00:00
nativeBuildInputs = [ pkg-config ];
2019-05-28 11:29:51 +00:00
buildInputs = [ curl openssl zlib ];
makeFlags = [
"PREFIX=${placeholder "out"}"
];
meta = with lib; {
2019-05-28 11:29:51 +00:00
description = "Tools for capturing wlan traffic and conversion to hashcat and John the Ripper formats";
2020-04-03 19:04:02 +00:00
homepage = "https://github.com/ZerBea/hcxtools";
2019-05-28 11:29:51 +00:00
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ dywedir ];
};
}