mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 21:14:52 +00:00
Merge pull request #117824 from russell/vendir
This commit is contained in:
commit
64a9488dbe
@ -8327,6 +8327,12 @@
|
|||||||
githubId = 4958190;
|
githubId = 4958190;
|
||||||
name = "Rushmore Mushambi";
|
name = "Rushmore Mushambi";
|
||||||
};
|
};
|
||||||
|
russell = {
|
||||||
|
email = "russell.sim@gmail.com";
|
||||||
|
github = "russell";
|
||||||
|
githubId = 2660;
|
||||||
|
name = "Russell Sim";
|
||||||
|
};
|
||||||
ruuda = {
|
ruuda = {
|
||||||
email = "dev+nix@veniogames.com";
|
email = "dev+nix@veniogames.com";
|
||||||
github = "ruuda";
|
github = "ruuda";
|
||||||
|
24
pkgs/development/tools/vendir/default.nix
Normal file
24
pkgs/development/tools/vendir/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -20589,6 +20589,8 @@ in
|
|||||||
|
|
||||||
v4l-utils = qt5.callPackage ../os-specific/linux/v4l-utils { };
|
v4l-utils = qt5.callPackage ../os-specific/linux/v4l-utils { };
|
||||||
|
|
||||||
|
vendir = callPackage ../development/tools/vendir { };
|
||||||
|
|
||||||
vndr = callPackage ../development/tools/vndr { };
|
vndr = callPackage ../development/tools/vndr { };
|
||||||
|
|
||||||
windows = callPackages ../os-specific/windows {};
|
windows = callPackages ../os-specific/windows {};
|
||||||
|
Loading…
Reference in New Issue
Block a user