mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
kbld: init at 0.44.1
Update pkgs/by-name/kb/kbld/package.nix Co-authored-by: Aleksana <alexander.huang.y@gmail.com> Update pkgs/by-name/kb/kbld/package.nix Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
This commit is contained in:
parent
30439d93eb
commit
eeaae0fe8a
35
pkgs/by-name/kb/kbld/package.nix
Normal file
35
pkgs/by-name/kb/kbld/package.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kbld";
|
||||
version = "0.44.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "carvel-dev";
|
||||
repo = "kbld";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-sEzCA32r3nSY1hT1r4EPPWsF9Kgn0rXnaAKlatFjZIo=";
|
||||
};
|
||||
|
||||
vendorHash = null;
|
||||
|
||||
subPackages = [ "cmd/kbld" ];
|
||||
|
||||
CGO_ENABLED = 0;
|
||||
|
||||
ldflags = [
|
||||
"-X=carvel.dev/kbld/pkg/kbld/version.Version=${version}"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Seamlessly incorporates image building and image pushing into your development and deployment workflows";
|
||||
homepage = "https://carvel.dev/kbld/";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ benchand ];
|
||||
mainProgram = "kbld";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user