From bccc8d15721dc8d3b670ca97fccda3a4adb64453 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 5 Feb 2023 10:33:44 +0100 Subject: [PATCH] certipy: add changelog to meta --- pkgs/tools/security/certipy/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/security/certipy/default.nix b/pkgs/tools/security/certipy/default.nix index 8bf3e6983b6d..d5fef885bb82 100644 --- a/pkgs/tools/security/certipy/default.nix +++ b/pkgs/tools/security/certipy/default.nix @@ -6,11 +6,12 @@ python3.pkgs.buildPythonApplication rec { pname = "certipy"; version = "2.0.9"; + format = "setuptools"; src = fetchFromGitHub { owner = "ly4k"; repo = "Certipy"; - rev = version; + rev = "refs/tags/${version}"; hash = "sha256-84nGRKZ0UlMDAZ1Wo5Hgy9XSAyEh0Tio9+3OZVFZG5k="; }; @@ -34,6 +35,7 @@ python3.pkgs.buildPythonApplication rec { meta = with lib; { description = "Tool to enumerate and abuse misconfigurations in Active Directory Certificate Services"; homepage = "https://github.com/ly4k/Certipy"; + changelog = "https://github.com/ly4k/Certipy/releases/tag/${version}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; };