Merge pull request #202885 from fabaff/tlsx-bump

tlsx: 0.0.8 -> 0.0.9
This commit is contained in:
Fabian Affolter 2022-11-26 08:45:39 +01:00 committed by GitHub
commit 1f0df7efce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,16 +5,19 @@
buildGoModule rec {
pname = "tlsx";
version = "0.0.8";
version = "0.0.9";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = pname;
rev = "v${version}";
hash = "sha256-TqYBLNnh4wjinoduFrmyNe+FgnGSCckwMy5zX0XhnlM=";
hash = "sha256-DcC08KmSXYOk4jlU0KIdu5zziWZLYlWetN+/ZGaY4RQ=";
};
vendorSha256 = "sha256-BppRtzTjiMcuc7xIz37bDcjnQHhOlstncES1vILTKYM=";
vendorHash = "sha256-MC7mS+GMfQUZPW6i/lDPW8qAHzT1Cr7gYYG9V4CTCM0=";
# Tests require network access
doCheck = false;
meta = with lib; {
description = "TLS grabber focused on TLS based data collection";
@ -23,6 +26,7 @@ buildGoModule rec {
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 ];
};