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

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

39 lines
897 B
Nix
Raw Normal View History

2022-08-10 12:45:44 -04:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "tlsx";
2024-01-28 09:45:26 -05:00
version = "1.1.6";
2022-08-10 12:45:44 -04:00
src = fetchFromGitHub {
owner = "projectdiscovery";
2024-01-28 10:10:48 -05:00
repo = "tlsx";
rev = "refs/tags/v${version}";
2024-01-28 09:45:26 -05:00
hash = "sha256-FF5/STjf8joyJM6qPds1wFeRfncSamy/wWfNRZcG5kc=";
2022-08-10 12:45:44 -04:00
};
2024-01-28 09:45:26 -05:00
vendorHash = "sha256-sJravmpvwOSZiVNWFUTLlTA4xk6drItDj4JzR8JNrOo=";
2024-01-28 10:10:48 -05:00
ldflags = [
"-s"
"-w"
];
# Tests require network access
doCheck = false;
2022-08-10 12:45:44 -04: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";
2022-11-25 07:28:07 -05:00
changelog = "https://github.com/projectdiscovery/tlsx/releases/tag/v${version}";
2022-08-10 12:45:44 -04:00
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}