ytt: 0.40.1 -> 0.41.1

This commit is contained in:
techknowlogick 2022-05-26 14:16:52 -04:00
parent 6d40b80603
commit 43c80444ca

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 ];
};
}