From 87529be5ee4f1f847e512d2d55aec3cc14905850 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 13 Dec 2022 17:02:04 +0100 Subject: [PATCH] kube-score: add changelog to meta --- .../networking/cluster/kube-score/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/cluster/kube-score/default.nix b/pkgs/applications/networking/cluster/kube-score/default.nix index 2986d1153c3e..6b3bcf54c263 100644 --- a/pkgs/applications/networking/cluster/kube-score/default.nix +++ b/pkgs/applications/networking/cluster/kube-score/default.nix @@ -1,4 +1,7 @@ -{ lib, buildGoModule, fetchFromGitHub }: +{ lib +, buildGoModule +, fetchFromGitHub +}: buildGoModule rec { pname = "kube-score"; @@ -8,15 +11,16 @@ buildGoModule rec { owner = "zegl"; repo = pname; rev = "v${version}"; - sha256 = "sha256-dKvPLAT9e8gNJkKDF7dQPGLSkv9QUjQklUX8Dm8i33E="; + hash = "sha256-dKvPLAT9e8gNJkKDF7dQPGLSkv9QUjQklUX8Dm8i33E="; }; - vendorSha256 = "sha256-pcNdszOfsYKiASOUNKflbr89j/wb9ILQvjMJYsiGPWo="; + vendorHash = "sha256-pcNdszOfsYKiASOUNKflbr89j/wb9ILQvjMJYsiGPWo="; meta = with lib; { description = "Kubernetes object analysis with recommendations for improved reliability and security"; - homepage = "https://github.com/zegl/kube-score"; - license = licenses.mit; - maintainers = [ maintainers.j4m3s ]; + homepage = "https://github.com/zegl/kube-score"; + changelog = "https://github.com/zegl/kube-score/releases/tag/v${version}"; + license = licenses.mit; + maintainers = with maintainers; [ j4m3s ]; }; }