kubefirst: init at 2.0.8

doCheck under ldflags

Fix lint
This commit is contained in:
QJoly 2023-05-11 08:07:39 +02:00
parent 49a401bd9f
commit f7e248bb6a
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kubefirst";
version = "2.0.8";
src = fetchFromGitHub {
owner = "kubefirst";
repo = pname;
rev = "v${version}";
hash = "sha256-JGseXRUehRuH1kuTfmkAJcfRN3vM0zN7K8pnOfJ0LAs=";
};
vendorHash = "sha256-Sc6HXJXkZ9vW6sxEKCTo6LDHeOGLTz0oN9JH11iUA/k=";
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 ];
};
}

View file

@ -31653,6 +31653,8 @@ with pkgs;
kubecfg = callPackage ../applications/networking/cluster/kubecfg { };
kubefirst = callPackage ../applications/networking/cluster/kubefirst { };
kube-score = callPackage ../applications/networking/cluster/kube-score { };
kubectl-evict-pod = callPackage ../applications/networking/cluster/kubectl-evict-pod {