Merge pull request #296951 from r-ryantm/auto-update/kubefirst

kubefirst: 2.4.0 -> 2.4.2
This commit is contained in:
Nick Cao 2024-03-21 09:13:44 -04:00 committed by GitHub
commit bd88b79154
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,26 +1,34 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "kubefirst";
version = "2.4.0";
version = "2.4.2";
src = fetchFromGitHub {
owner = "kubefirst";
repo = pname;
rev = "v${version}";
hash = "sha256-3WGItliwfJuyh0nTUJyCo2qXuvGZOfAH6XCIGxvF8bs=";
repo = "kubefirst";
rev = "refs/tags/v${version}";
hash = "sha256-fw2DmgAiCsEw5lkeZOiU5ptAFb13BDTx09Js6IO28Ww=";
};
vendorHash = "sha256-ZcZl4knlyKAwTsiyZvlkN5e2ox30B5aNzutI/2UEE9U=";
ldflags = [ "-s" "-w" "-X github.com/kubefirst/runtime/configs.K1Version=v${version}"];
ldflags = [
"-s"
"-w"
"-X=github.com/kubefirst/runtime/configs.K1Version=v${version}"
];
doCheck = false;
meta = with lib; {
description = "The Kubefirst CLI creates instant GitOps platforms that integrate some of the best tools in cloud native from scratch.";
description = "Tool to create instant GitOps platforms that integrate some of the best tools in cloud native from scratch";
mainProgram = "kubefirst";
homepage = "https://github.com/kubefirst/kubefirst/";
changelog = "https://github.com/kubefirst/kubefirst/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ qjoly ];
};