kapp: 0.58.0 -> 0.59.0

This commit is contained in:
R. Ryantm 2023-09-26 22:42:43 +00:00 committed by Maxine Aubrey
parent 8ab2b1221d
commit 3104b34067
No known key found for this signature in database
GPG key ID: F6FE033DFCB899F7

View file

@ -2,19 +2,21 @@
buildGoModule rec {
pname = "kapp";
version = "0.58.0";
version = "0.59.0";
src = fetchFromGitHub {
owner = "vmware-tanzu";
repo = "carvel-kapp";
owner = "carvel-dev";
repo = "kapp";
rev = "v${version}";
sha256 = "sha256-E5QiR4hcO2Ii5qXAlMrw9Yxy8IYqjnonSGiUUyzhMVc=";
sha256 = "sha256-I+BXKJvilrYvSi2xevZKFE49emghg19dCpW/bbIcZ8o=";
};
vendorHash = null;
subPackages = [ "cmd/kapp" ];
CGO_ENABLED = 0;
ldflags = [
"-X github.com/vmware-tanzu/carvel-kapp/pkg/kapp/version.Version=${version}"
];
@ -34,7 +36,7 @@ buildGoModule rec {
meta = with lib; {
description = "CLI tool that encourages Kubernetes users to manage bulk resources with an application abstraction for grouping";
homepage = "https://get-kapp.io";
homepage = "https://carvel.dev/kapp/";
license = licenses.asl20;
maintainers = with maintainers; [ brodes ];
};