[Backport release-26.05] kdash: fix source hash (#530653)

This commit is contained in:
nixpkgs-ci[bot] 2026-06-11 10:48:13 +00:00 committed by GitHub
commit d7c966b18f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,8 +16,8 @@ rustPlatform.buildRustPackage (finalAttrs: {
src = fetchFromGitHub {
owner = "kdash-rs";
repo = "kdash";
rev = "v${finalAttrs.version}";
sha256 = "sha256-xc2vNPQWg6P+FWxKekvOTW3QHxgmkD6t/jgYGdoaMeI=";
tag = "v${finalAttrs.version}";
hash = "sha256-CFGZIRZgOUiB/evCDUQFB+w5PJCJNtrWqYzx2yRQKpE=";
};
nativeBuildInputs = [
@ -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 ];
};