Merge pull request #105071 from brhoades/ytt

This commit is contained in:
Sandro 2020-12-03 17:50:50 +01:00 committed by GitHub
commit 178a44c09f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 37 additions and 0 deletions

View File

@ -1258,6 +1258,16 @@
githubId = 3043718; githubId = 3043718;
name = "Brett Lyons"; name = "Brett Lyons";
}; };
brodes = {
email = "me@brod.es";
github = "brhoades";
githubId = 4763746;
name = "Billy Rhoades";
keys = [{
longkeyid = "rsa4096/0x8AE74787A4B7C07E";
fingerprint = "BF4FCB85C69989B4ED95BF938AE74787A4B7C07E";
}];
};
bryanasdev000 = { bryanasdev000 = {
email = "bryanasdev000@gmail.com"; email = "bryanasdev000@gmail.com";
github = "bryanasdev000"; github = "bryanasdev000";

View File

@ -0,0 +1,25 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "ytt";
version = "0.30.0";
src = fetchFromGitHub {
owner = "vmware-tanzu";
repo = "carvel-ytt";
rev = "v${version}";
sha256 = "0v9wp15aj4r7wif8i897zwj3c6bg41b95kk7vi3a3bzin814qn6l";
};
goPackagePath = "github.com/vmware-tanzu/carvel-ytt";
vendorSha256 = null;
subPackages = [ "cmd/ytt" ];
meta = with lib; {
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 ];
};
}

View File

@ -12231,6 +12231,8 @@ in
yq-go = callPackage ../development/tools/yq-go { }; yq-go = callPackage ../development/tools/yq-go { };
ytt = callPackage ../development/tools/ytt {};
winpdb = callPackage ../development/tools/winpdb { }; winpdb = callPackage ../development/tools/winpdb { };
grabserial = callPackage ../development/tools/grabserial { }; grabserial = callPackage ../development/tools/grabserial { };