biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / ytt / default.nix
blob1b38498f2cfcd682ba4565f390d084833d00d316
1 { lib, buildGoModule, fetchFromGitHub, installShellFiles }:
3 buildGoModule rec {
4   pname = "ytt";
5   version = "0.49.0";
7   src = fetchFromGitHub {
8     owner = "vmware-tanzu";
9     repo = "carvel-ytt";
10     rev = "v${version}";
11     sha256 = "sha256-7eG9ATZTqA48KFdPW/XVYNdq+giYVx0v1GDtabiTpQI=";
12   };
14   vendorHash = null;
16   nativeBuildInputs = [ installShellFiles ];
18   ldflags = [
19     "-X github.com/vmware-tanzu/carvel-ytt/pkg/version.Version=${version}"
20   ];
22   subPackages = [ "cmd/ytt" ];
24   postInstall = ''
25     installShellCompletion --cmd ytt \
26       --bash <($out/bin/ytt completion bash) \
27       --fish <($out/bin/ytt completion fish) \
28       --zsh <($out/bin/ytt completion zsh)
29   '';
31   meta = with lib; {
32     description = "YAML templating tool that allows configuration of complex software via reusable templates with user-provided values";
33     mainProgram = "ytt";
34     homepage = "https://get-ytt.io";
35     license = licenses.asl20;
36     maintainers = with maintainers; [ brodes techknowlogick ];
37   };