depot/third_party/nixpkgs/pkgs/tools/security/tlsx/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

29 lines
712 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "tlsx";
version = "0.0.7";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = pname;
rev = "v${version}";
hash = "sha256-tyZDmtqQLTV06mLo1lg/qWRjvxvgVvGpoRXWX9HtXeo=";
};
vendorSha256 = "sha256-ERZ4mWmtOsW1nYUshSbCzhy+KcujviPtL4LS/soPrFQ=";
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 ];
};
}