From d2784e8ba7886aac8293b0c7077f87148ccb05b5 Mon Sep 17 00:00:00 2001 From: Tom Hunze Date: Thu, 11 Jun 2026 09:58:06 +0200 Subject: [PATCH] kdash: add `meta.changelog` --- pkgs/by-name/kd/kdash/package.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/kd/kdash/package.nix b/pkgs/by-name/kd/kdash/package.nix index ada605369681..2f7f467c87e7 100644 --- a/pkgs/by-name/kd/kdash/package.nix +++ b/pkgs/by-name/kd/kdash/package.nix @@ -16,7 +16,7 @@ rustPlatform.buildRustPackage (finalAttrs: { src = fetchFromGitHub { owner = "kdash-rs"; repo = "kdash"; - rev = "v${finalAttrs.version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-CFGZIRZgOUiB/evCDUQFB+w5PJCJNtrWqYzx2yRQKpE="; }; @@ -40,6 +40,7 @@ rustPlatform.buildRustPackage (finalAttrs: { description = "Simple and fast dashboard for Kubernetes"; mainProgram = "kdash"; homepage = "https://github.com/kdash-rs/kdash"; + changelog = "https://github.com/kdash-rs/kdash/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = with lib.licenses; [ mit ]; maintainers = with lib.maintainers; [ matthiasbeyer ]; };