mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 00:24:47 +00:00
imgpkg: init at 0.43.1 (#336558)
This commit is contained in:
commit
595d042883
@ -2514,6 +2514,12 @@
|
||||
githubId = 6145260;
|
||||
keys = [ { fingerprint = "804B 6CB8 AED5 61D9 3DAD 4DC5 E2F2 2C5E DF20 119D"; } ];
|
||||
};
|
||||
benchand = {
|
||||
name = "Ben Chand";
|
||||
email = "BenChand1995@gmail.com";
|
||||
github = "BenChand";
|
||||
githubId = 3618457;
|
||||
};
|
||||
bendlas = {
|
||||
email = "herwig@bendlas.net";
|
||||
matrix = "@bendlas:matrix.org";
|
||||
|
32
pkgs/by-name/im/imgpkg/package.nix
Normal file
32
pkgs/by-name/im/imgpkg/package.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "imgpkg";
|
||||
version = "0.43.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "carvel-dev";
|
||||
repo = "imgpkg";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-RjTVJjuzjNTZrg1VZ4NrDf1SZmS+CGzofYTBQEZNIag=";
|
||||
};
|
||||
|
||||
vendorHash = null;
|
||||
|
||||
subPackages = [ "cmd/imgpkg" ];
|
||||
|
||||
CGO_ENABLED = "0";
|
||||
ldflags = [ "-X=carvel.dev/imgpkg/pkg/imgpkg/cmd.Version=${version}" ];
|
||||
|
||||
meta = {
|
||||
description = "Store application configuration files in Docker/OCI registries";
|
||||
homepage = "https://carvel.dev/imgpkg";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ benchand ];
|
||||
mainProgram = "imgpkg";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user