nixpkgs/pkgs/applications/networking/cluster/kubefirst/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
906 B
Nix
Raw Normal View History

2024-03-18 17:17:25 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "kubefirst";
2024-09-04 11:22:18 +00:00
version = "2.5.11";
src = fetchFromGitHub {
2024-09-04 11:22:18 +00:00
owner = "konstructio";
2024-03-18 17:17:25 +00:00
repo = "kubefirst";
rev = "refs/tags/v${version}";
2024-09-04 11:22:18 +00:00
hash = "sha256-paGb/Ifslj2XsXhY99ETXs72s3vSXAUqTeGPg+Nviho=";
};
2024-08-29 04:53:42 +00:00
vendorHash = "sha256-tOCVDp9oClfeBsyZ6gv6HoGPjZByoxxAceV/wxQeBSA=";
2024-03-18 17:17:25 +00:00
ldflags = [
"-s"
"-w"
2024-09-04 11:22:18 +00:00
"-X=github.com/konstructio/kubefirst-api/configs.K1Version=v${version}"
2024-03-18 17:17:25 +00:00
];
doCheck = false;
meta = with lib; {
2024-03-18 17:17:25 +00:00
description = "Tool to create instant GitOps platforms that integrate some of the best tools in cloud native from scratch";
mainProgram = "kubefirst";
2024-09-04 11:22:18 +00:00
homepage = "https://github.com/konstructio/kubefirst/";
changelog = "https://github.com/konstructio/kubefirst/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ qjoly ];
};
}