upbound: init at 0.12.2

This commit is contained in:
Luc Perkins 2022-08-13 16:52:38 +03:00
parent e105167e98
commit 3a57080baa
No known key found for this signature in database
GPG key ID: 4F102D0C16E232F2
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "upbound";
version = "0.12.2";
src = fetchFromGitHub {
owner = pname;
repo = "up";
rev = "v${version}";
sha256 = "sha256-tbYUxqDtMIlHJ+bIE9PDDhPTSQKaZYObuRFSyRkh8+Y=";
};
vendorSha256 = "sha256-EeGNH/ka9Mt0vVtZfizXdTqf1f3H1aM5GITUyp+2FxM=";
subPackages = [ "cmd/docker-credential-up" "cmd/up" ];
ldflags = [
"-s"
"-w"
"-X github.com/upbound/up/internal/version.version=v${version}"
];
meta = with lib; {
description =
"CLI for interacting with Upbound Cloud, Upbound Enterprise, and Universal Crossplane (UXP)";
homepage = "https://upbound.io";
license = licenses.asl20;
maintainers = with maintainers; [ lucperkins ];
mainProgram = "up";
};
}

View file

@ -11639,6 +11639,8 @@ with pkgs;
up = callPackage ../tools/misc/up { };
upbound = callPackage ../development/tools/upbound { };
upterm = callPackage ../tools/misc/upterm { };
upx = callPackage ../tools/compression/upx { };