2022-11-29T01:12:01 kapp 0.53.0 -> 0.54.0 https://github.com/vmware-tanzu/carvel-kapp/releases 2022-11-29T01:12:03 attrpath: kapp 2022-11-29T01:12:03 Checking auto update branch... 2022-11-29T01:12:03 No auto update branch exists 2022-11-29T01:12:04 Old version 0.53.0" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, kapp }: buildGoModule rec { pname = "kapp"; version = "0.54.0"; src = fetchFromGitHub { owner = "vmware-tanzu"; repo = "carvel-kapp"; rev = "v${version}"; sha256 = "sha256-68JIsL+qrXB3yLU+euznAVPv57cQd5qzvHn547nwHVI="; }; vendorSha256 = null; subPackages = [ "cmd/kapp" ]; ldflags = [ "-X github.com/vmware-tanzu/carvel-kapp/pkg/kapp/version.Version=${version}" ]; nativeBuildInputs = [ installShellFiles ]; postInstall = '' for shell in bash fish zsh; do $out/bin/kapp completion $shell > kapp.$shell installShellCompletion kapp.$shell done ''; passthru.tests.version = testers.testVersion { package = kapp; }; 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"; license = licenses.asl20; maintainers = with maintainers; [ brodes ]; }; }