kubecfg: 0.22.0 -> 0.26.0 (#171259)

This commit is contained in:
Aaron Jheng 2022-05-03 01:25:17 +08:00 committed by GitHub
parent 54c357ab93
commit 073c11c7d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,17 @@
{ lib, buildGoPackage, fetchFromGitHub, installShellFiles }:
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
buildGoPackage rec {
buildGoModule rec {
pname = "kubecfg";
version = "0.22.0";
version = "0.26.0";
src = fetchFromGitHub {
owner = "bitnami";
owner = "kubecfg";
repo = "kubecfg";
rev = "v${version}";
sha256 = "sha256-8U/A4F4DboS46ftpuk5fQGT2Y0V+X0y0L3/o4x8qpnY=";
sha256 = "sha256-ekojX7gl8wC7GlHG3Y+dwry7jxjIm5dbS7cNN1xu4kY=";
};
goPackagePath = "github.com/bitnami/kubecfg";
vendorSha256 = "sha256-dPdF3qTrYRbKUepgo6WVIVyGnaWxhQ0371fzXlBD8rE=";
ldflags = [ "-s" "-w" "-X main.version=v${version}" ];
@ -25,7 +25,7 @@ buildGoPackage rec {
meta = {
description = "A tool for managing Kubernetes resources as code";
homepage = "https://github.com/bitnami/kubecfg";
homepage = "https://github.com/kubecfg/kubecfg";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ benley ];
platforms = lib.platforms.unix;