about summary refs log tree commit diff
path: root/pkgs/tools/security/webanalyze
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-11-27 16:10:14 +0100
committerGitHub <noreply@github.com>2022-11-27 16:10:14 +0100
commit5feb4e39442afe8dfcd846c22761ba84f9284215 (patch)
tree8000d2cab3953d29ac77457b87d56c5b89d31073 /pkgs/tools/security/webanalyze
parent463942ec3519e9bf24d35549a1b76de99e466999 (diff)
webanalyze: add changelog to meta
Diffstat (limited to 'pkgs/tools/security/webanalyze')
-rw-r--r--pkgs/tools/security/webanalyze/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/security/webanalyze/default.nix b/pkgs/tools/security/webanalyze/default.nix
index 65197cff4ca52..cfce48228b570 100644
--- a/pkgs/tools/security/webanalyze/default.nix
+++ b/pkgs/tools/security/webanalyze/default.nix
@@ -10,15 +10,16 @@ buildGoModule rec {
   src = fetchFromGitHub {
     owner = "rverton";
     repo = pname;
-    rev = "v${version}";
+    rev = "refs/tags/v${version}";
     hash = "sha256-1z4hi9a/OzBXIMBk1f0JpPMV/kRgBnTQAEygIZqV+1w=";
   };
 
-  vendorSha256 = "sha256-kXtWYGsZUUhBNvkTOah3Z+ta118k6PXfpBx6MLr/pq0=";
+  vendorHash = "sha256-kXtWYGsZUUhBNvkTOah3Z+ta118k6PXfpBx6MLr/pq0=";
 
   meta = with lib; {
     description = "Tool to uncover technologies used on websites";
     homepage = "https://github.com/rverton/webanalyze";
+    changelog = "https://github.com/rverton/webanalyze/releases/tag/v${version}";
     license = licenses.mit;
     maintainers = with maintainers; [ fab ];
   };