about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-03-28 20:58:48 +0200
committerGitHub <noreply@github.com>2023-03-28 20:58:48 +0200
commit03996a476fc7861e441f907762e266fe57ab94b5 (patch)
tree1f562e8a8e6cac50950e77474c20e7c38f140eb2
parent20fc1f47aa412f044dd5a7a1a044f030e6e60b9b (diff)
dontgo403: add changelog to meta
-rw-r--r--pkgs/tools/security/dontgo403/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/security/dontgo403/default.nix b/pkgs/tools/security/dontgo403/default.nix
index 8e597af81e61f..0663ed348cfbb 100644
--- a/pkgs/tools/security/dontgo403/default.nix
+++ b/pkgs/tools/security/dontgo403/default.nix
@@ -10,7 +10,7 @@ buildGoModule rec {
   src = fetchFromGitHub {
     owner = "devploit";
     repo = pname;
-    rev = version;
+    rev = "refs/tags/${version}";
     hash = "sha256-Gpr2L7iSdMBqwMzdYDtdzyZYu+Uwjn1wZvw4LTr8xWI=";
   };
 
@@ -19,6 +19,7 @@ buildGoModule rec {
   meta = with lib; {
     description = "Tool to bypass 40X response codes";
     homepage = "https://github.com/devploit/dontgo403";
+    chnagelog = "https://github.com/devploit/dontgo403/releases/tag/${version}";
     license = licenses.asl20;
     maintainers = with maintainers; [ fab ];
   };