mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 20:13:21 +00:00
27 lines
756 B
Nix
27 lines
756 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubefirst";
|
|
version = "2.1.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kubefirst";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-EFFGyqAihANx1WgXRTt0E80nZ30Y8zbYPRjXtfYcWps=";
|
|
};
|
|
|
|
vendorHash = "sha256-mVHx4GiRd4bn+nNbFLo9btMjVtCLR6HF8CF/N3CaB/0=";
|
|
|
|
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.";
|
|
homepage = "https://github.com/kubefirst/kubefirst/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ qjoly ];
|
|
};
|
|
}
|