about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-01-07 23:00:15 +0100
committerGitHub <noreply@github.com>2023-01-07 23:00:15 +0100
commitf04951a467f8ee3d4c41d053ea60b133210d51d3 (patch)
treebb14407fdd4c81de5bd2f431c3f5f3ac465e3119
parenta9b660b5342e9da9d63e01d9457d1e25eef3326e (diff)
cdk-go: add changelog to meta
-rw-r--r--pkgs/tools/security/cdk-go/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/security/cdk-go/default.nix b/pkgs/tools/security/cdk-go/default.nix
index e5626a40a97b7..e2a997bd78165 100644
--- a/pkgs/tools/security/cdk-go/default.nix
+++ b/pkgs/tools/security/cdk-go/default.nix
@@ -11,8 +11,8 @@ buildGoModule rec {
   src = fetchFromGitHub {
     owner = "cdk-team";
     repo = "CDK";
-    rev = "v${version}";
-    sha256 = "sha256-d1EwKu3QUbIhpgSQLL3GqaPQJ1K/QxwhsHuX5y1jWH0=";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-d1EwKu3QUbIhpgSQLL3GqaPQJ1K/QxwhsHuX5y1jWH0=";
   };
 
   vendorHash = "sha256-aJN/d/BxmleRXKw6++k6e0Vb0Gs5zg1QfakviABYTog=";
@@ -23,6 +23,7 @@ buildGoModule rec {
   meta = with lib; {
     description = "Container penetration toolkit";
     homepage = "https://github.com/cdk-team/CDK";
+    changelog = "https://github.com/cdk-team/CDK/releases/tag/v${version}";
     license = with licenses; [ gpl2Only ];
     maintainers = with maintainers; [ fab ];
     mainProgram = "cdk";