nixpkgs/pkgs/by-name/ku/kubefirst/package.nix

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

36 lines
905 B
Nix
Raw Normal View History

2024-03-18 17:17:25 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "kubefirst";
2024-10-29 04:47:01 +00:00
version = "2.7.3";
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-10-29 04:47:01 +00:00
hash = "sha256-pMvkroPxlHIf2zWO5aqTPYlQ3LlQLaahHuTZ2E1mKJY=";
};
2024-10-29 04:47:01 +00:00
vendorHash = "sha256-O7olGZC1QZQm1BPZOQdxSgUkASuE26oMpSPMv2sBawc=";
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 ];
};
}