summary refs log tree commit diff
path: root/pkgs/tools/security/tlsx
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-11-25 13:28:07 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-11-25 13:28:07 +0100
commit0c44f849bf2813f5f97cf2b1698e276871e53665 (patch)
tree3c39e38942557094cce71d0e9b4584c3447f2b1e /pkgs/tools/security/tlsx
parentcdcd41104a3eee16aad805dda72f374d85048e86 (diff)
downloadnixpkgs-0c44f849bf2813f5f97cf2b1698e276871e53665.tar
nixpkgs-0c44f849bf2813f5f97cf2b1698e276871e53665.tar.gz
nixpkgs-0c44f849bf2813f5f97cf2b1698e276871e53665.tar.bz2
nixpkgs-0c44f849bf2813f5f97cf2b1698e276871e53665.tar.lz
nixpkgs-0c44f849bf2813f5f97cf2b1698e276871e53665.tar.xz
nixpkgs-0c44f849bf2813f5f97cf2b1698e276871e53665.tar.zst
nixpkgs-0c44f849bf2813f5f97cf2b1698e276871e53665.zip
tlsx: add changelog to meta
Diffstat (limited to 'pkgs/tools/security/tlsx')
-rw-r--r--pkgs/tools/security/tlsx/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/security/tlsx/default.nix b/pkgs/tools/security/tlsx/default.nix
index 4f63061cac0..d420e801eec 100644
--- a/pkgs/tools/security/tlsx/default.nix
+++ b/pkgs/tools/security/tlsx/default.nix
@@ -5,16 +5,16 @@
 
 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-BppRtzTjiMcuc7xIz37bDcjnQHhOlstncES1vILTKYM=";
 
   meta = with lib; {
     description = "TLS grabber focused on TLS based data collection";
@@ -23,6 +23,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 ];
   };