Merge pull request #117824 from russell/vendir

This commit is contained in:
Sandro 2021-03-28 22:56:29 +02:00 committed by GitHub
commit 64a9488dbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 0 deletions

View File

@ -8327,6 +8327,12 @@
githubId = 4958190;
name = "Rushmore Mushambi";
};
russell = {
email = "russell.sim@gmail.com";
github = "russell";
githubId = 2660;
name = "Russell Sim";
};
ruuda = {
email = "dev+nix@veniogames.com";
github = "ruuda";

View File

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "vendir";
version = "0.17.0";
src = fetchFromGitHub {
owner = "vmware-tanzu";
repo = "carvel-vendir";
rev = "v${version}";
sha256 = "14yd14z4666alwsn2jhcvg2kijvw4qjr4h3gikchiir38w520fs9";
};
vendorSha256 = null;
subPackages = [ "cmd/vendir" ];
meta = with lib; {
description = "CLI tool to vendor portions of git repos, github releases, helm charts, docker image contents, etc. declaratively";
homepage = "https://carvel.dev/vendir/";
license = licenses.asl20;
maintainers = with maintainers; [ russell ];
};
}

View File

@ -20589,6 +20589,8 @@ in
v4l-utils = qt5.callPackage ../os-specific/linux/v4l-utils { };
vendir = callPackage ../development/tools/vendir { };
vndr = callPackage ../development/tools/vndr { };
windows = callPackages ../os-specific/windows {};