{ lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "kubefirst"; version = "2.3.0"; src = fetchFromGitHub { owner = "kubefirst"; repo = pname; rev = "v${version}"; hash = "sha256-5znZMr0Dj6kpKJbypICN5+Fv/+3FgTLBok3YMrWaHdo="; }; vendorHash = "sha256-/iAGUnIMH2+IrvvXig56SpZ0eTfVwaCgGMUDp5/MtEo="; 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 ]; }; }