depot/third_party/nixpkgs/pkgs/tools/networking/kapp/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

41 lines
1 KiB
Nix

{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, kapp }:
buildGoModule rec {
pname = "kapp";
version = "0.57.1";
src = fetchFromGitHub {
owner = "vmware-tanzu";
repo = "carvel-kapp";
rev = "v${version}";
sha256 = "sha256-JNo6+WlMcIUGb/36GM6ofvJBIJnF4oRocdYsEw7V1Ks=";
};
vendorHash = 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 ];
};
}