forked from mirrors/nixpkgs
bed8ee21f7
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
34 lines
897 B
Nix
34 lines
897 B
Nix
{ lib, buildGoPackage, fetchFromGitHub, installShellFiles }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "kubecfg";
|
|
version = "0.21.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bitnami";
|
|
repo = "kubecfg";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Wu7+Xmb7ha3OG37DzLg2+/Sr9hB5oD3OIkC9h9Fa4QA=";
|
|
};
|
|
|
|
goPackagePath = "github.com/bitnami/kubecfg";
|
|
|
|
ldflags = [ "-s" "-w" "-X main.version=v${version}" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd kubecfg \
|
|
--bash <($out/bin/kubecfg completion --shell=bash) \
|
|
--zsh <($out/bin/kubecfg completion --shell=zsh)
|
|
'';
|
|
|
|
meta = {
|
|
description = "A tool for managing Kubernetes resources as code";
|
|
homepage = "https://github.com/bitnami/kubecfg";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ benley ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|