mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
5a188d8631
Diff: https://github.com/projectdiscovery/tlsx/compare/v1.1.1...v1.1.3 Changelog: https://github.com/projectdiscovery/tlsx/releases/tag/v1.1.3
34 lines
848 B
Nix
34 lines
848 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "tlsx";
|
|
version = "1.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "projectdiscovery";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-dCtMfrkN43zJqztCobT3RSkn4crGigqzI6NSP8wrCf0=";
|
|
};
|
|
|
|
vendorHash = "sha256-33eVwWV9PnrP2MSPXTAcYe9ruJc5lauASc4uubBd9S4=";
|
|
|
|
# Tests require network access
|
|
doCheck = false;
|
|
|
|
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";
|
|
changelog = "https://github.com/projectdiscovery/tlsx/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|