kbld: init at 0.44.1 (#344057)

This commit is contained in:
Aleksana 2024-09-25 18:49:57 +08:00 committed by GitHub
commit 6fe8ff572c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View 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";
};
}