nixpkgs/pkgs/tools/networking/kapp/default.nix
Billy J Rhoades II 8d214984a6 kapp: init at 0.34.0
Added kapp at 0.34.0 which is currently missing in nixpkgs
2020-12-28 11:36:52 +10:00

24 lines
616 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kapp";
version = "0.34.0";
src = fetchFromGitHub {
owner = "vmware-tanzu";
repo = "carvel-kapp";
rev = "v${version}";
sha256 = "145909cbq4yb25r6ccpdhzfwk60q5g2hw6qdp2h6ja1ckrnvffld";
};
vendorSha256 = null;
subPackages = [ "cmd/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 ];
};
}