kubeone: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-13 17:04:53 +01:00 committed by GitHub
parent f6dbd52c85
commit 2b99a45fe4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,13 +14,14 @@ buildGoModule rec {
owner = "kubermatic";
repo = "kubeone";
rev = "v${version}";
sha256 = "sha256-s94o2/wInWMWbJcq8cpEbJYHL6vpD3Vurl/rOigzQRk=";
hash = "sha256-s94o2/wInWMWbJcq8cpEbJYHL6vpD3Vurl/rOigzQRk=";
};
vendorSha256 = "sha256-Y4eivDchnN2rtQWjFY3cFiJXRfj48UfVUKM/OLuWXGA=";
vendorHash = "sha256-Y4eivDchnN2rtQWjFY3cFiJXRfj48UfVUKM/OLuWXGA=";
ldflags = [
"-s -w"
"-s"
"-w"
"-X k8c.io/kubeone/pkg/cmd.version=${version}"
"-X k8c.io/kubeone/pkg/cmd.date=unknown"
];
@ -40,10 +41,11 @@ buildGoModule rec {
command = "kubeone version";
};
meta = {
description = "Automate cluster operations on all your cloud, on-prem, edge, and IoT environments.";
meta = with lib; {
description = "Automate cluster operations on all your cloud, on-prem, edge, and IoT environments";
homepage = "https://kubeone.io/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ lblasc ];
changelog = "https://github.com/kubermatic/kubeone/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ lblasc ];
};
}