Merge pull request #105071 from brhoades/ytt
This commit is contained in:
commit
178a44c09f
@ -1258,6 +1258,16 @@
|
||||
githubId = 3043718;
|
||||
name = "Brett Lyons";
|
||||
};
|
||||
brodes = {
|
||||
email = "me@brod.es";
|
||||
github = "brhoades";
|
||||
githubId = 4763746;
|
||||
name = "Billy Rhoades";
|
||||
keys = [{
|
||||
longkeyid = "rsa4096/0x8AE74787A4B7C07E";
|
||||
fingerprint = "BF4FCB85C69989B4ED95BF938AE74787A4B7C07E";
|
||||
}];
|
||||
};
|
||||
bryanasdev000 = {
|
||||
email = "bryanasdev000@gmail.com";
|
||||
github = "bryanasdev000";
|
||||
|
25
pkgs/development/tools/ytt/default.nix
Normal file
25
pkgs/development/tools/ytt/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -12231,6 +12231,8 @@ in
|
||||
|
||||
yq-go = callPackage ../development/tools/yq-go { };
|
||||
|
||||
ytt = callPackage ../development/tools/ytt {};
|
||||
|
||||
winpdb = callPackage ../development/tools/winpdb { };
|
||||
|
||||
grabserial = callPackage ../development/tools/grabserial { };
|
||||
|
Loading…
Reference in New Issue
Block a user