Unverified Commit 4b177b1d authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #231228 from QJoly/kubefirst

kubefirst: init at 2.0.8
parents 58b1a946 f7e248bb
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -31685,6 +31685,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 {