nixpkgs/pkgs/tools/networking/kapp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, kapp }:
buildGoModule rec {
pname = "kapp";
2023-07-29 00:13:31 +00:00
version = "0.58.0";
src = fetchFromGitHub {
owner = "vmware-tanzu";
repo = "carvel-kapp";
rev = "v${version}";
2023-07-29 00:13:31 +00:00
sha256 = "sha256-E5QiR4hcO2Ii5qXAlMrw9Yxy8IYqjnonSGiUUyzhMVc=";
};
2023-04-17 19:19:14 +00:00
vendorHash = null;
subPackages = [ "cmd/kapp" ];
2021-11-03 06:43:23 +00:00
ldflags = [
"-X github.com/vmware-tanzu/carvel-kapp/pkg/kapp/version.Version=${version}"
2021-11-03 06:43:23 +00:00
];
2021-03-18 08:58:03 +00:00
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 ];
};
}