kapp: 0.40.0 -> 0.42.0

This commit is contained in:
R. Ryantm 2021-11-03 06:43:23 +00:00 committed by zowoq
parent 9c542ec266
commit 91e808c099

View file

@ -1,19 +1,23 @@
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
buildGoModule rec {
pname = "kapp";
version = "0.40.0";
version = "0.42.0";
src = fetchFromGitHub {
owner = "vmware-tanzu";
repo = "carvel-kapp";
rev = "v${version}";
sha256 = "sha256-9nvYxLE35IwmVB1Dzw7t3DZw4/kSiMPIqzl2PUKODtU=";
sha256 = "sha256-unjfUecfvuobhvsSGSqMAs19ncOLkaJZ2uJv5uVcHr0=";
};
vendorSha256 = null;
subPackages = [ "cmd/kapp" ];
ldflags = [
"-X github.com/k14s/kapp/pkg/kapp/version.Version=${version}"
];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''