Merge pull request #174778 from techknowlogick/bump-ytt

ytt: 0.40.1 -> 0.41.1
This commit is contained in:
Mario Rodas 2022-05-28 11:45:31 -05:00 committed by GitHub
commit d23ed68bc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,13 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "ytt";
version = "0.40.1";
version = "0.41.1";
src = fetchFromGitHub {
owner = "vmware-tanzu";
repo = "carvel-ytt";
rev = "v${version}";
sha256 = "sha256-DtzdgEHgxoZRSvylq2vLzU1PAk1ETBDpBWFHcIW95r4=";
sha256 = "sha256-JOmDEhisJh4sezxf/Whsf1W7rn4q7C3GqmINQ/A13J0=";
};
vendorSha256 = null;
@ -18,6 +18,6 @@ buildGoModule rec {
description = "YAML templating tool that allows configuration of complex software via reusable templates with user-provided values";
homepage = "https://get-ytt.io";
license = licenses.asl20;
maintainers = with maintainers; [ brodes ];
maintainers = with maintainers; [ brodes techknowlogick ];
};
}