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

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

30 lines
712 B
Nix
Raw Normal View History

2022-08-10 16:45:44 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "tlsx";
2022-10-06 00:59:30 +00:00
version = "0.0.8";
2022-08-10 16:45:44 +00:00
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = pname;
rev = "v${version}";
2022-10-06 00:59:30 +00:00
hash = "sha256-TqYBLNnh4wjinoduFrmyNe+FgnGSCckwMy5zX0XhnlM=";
2022-08-10 16:45:44 +00:00
};
2022-10-06 00:59:30 +00:00
vendorSha256 = "sha256-BppRtzTjiMcuc7xIz37bDcjnQHhOlstncES1vILTKYM=";
2022-08-10 16:45:44 +00:00
meta = with lib; {
description = "TLS grabber focused on TLS based data collection";
longDescription = ''
A fast and configurable TLS grabber focused on TLS based data
collection and analysis.
'';
homepage = "https://github.com/projectdiscovery/tlsx";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}