kubecfg: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-10 17:20:11 +01:00 committed by GitHub
parent 57d036135a
commit 826597de64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,8 @@
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec {
pname = "kubecfg";
@ -8,12 +12,16 @@ buildGoModule rec {
owner = "kubecfg";
repo = "kubecfg";
rev = "v${version}";
sha256 = "sha256-5IaF7q9Ue+tHkThxYgpkrnEH7xpKBx6cqKf2Zw2mjN4=";
hash = "sha256-5IaF7q9Ue+tHkThxYgpkrnEH7xpKBx6cqKf2Zw2mjN4=";
};
vendorSha256 = "sha256-Fh8QlXZ7I3XORjRhf5DIQmqA35LmgWVTN+iZDGaYHD8=";
vendorHash = "sha256-Fh8QlXZ7I3XORjRhf5DIQmqA35LmgWVTN+iZDGaYHD8=";
ldflags = [ "-s" "-w" "-X main.version=v${version}" ];
ldflags = [
"-s"
"-w"
"-X main.version=v${version}"
];
nativeBuildInputs = [ installShellFiles ];
@ -23,11 +31,12 @@ buildGoModule rec {
--zsh <($out/bin/kubecfg completion --shell=zsh)
'';
meta = {
meta = with lib; {
description = "A tool for managing Kubernetes resources as code";
homepage = "https://github.com/kubecfg/kubecfg";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ benley ];
platforms = lib.platforms.unix;
changelog = "https://github.com/kubecfg/kubecfg/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ benley ];
platforms = platforms.unix;
};
}