about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/kubefirst
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/cluster/kubefirst')
-rw-r--r--pkgs/applications/networking/cluster/kubefirst/default.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/pkgs/applications/networking/cluster/kubefirst/default.nix b/pkgs/applications/networking/cluster/kubefirst/default.nix
deleted file mode 100644
index 7183fb8885b2..000000000000
--- a/pkgs/applications/networking/cluster/kubefirst/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ lib
-, buildGoModule
-, fetchFromGitHub
-}:
-
-buildGoModule rec {
-  pname = "kubefirst";
-  version = "2.4.10";
-
-  src = fetchFromGitHub {
-    owner = "kubefirst";
-    repo = "kubefirst";
-    rev = "refs/tags/v${version}";
-    hash = "sha256-EgJ+ymddMsB37ygREwdF6qmGcgJKPz06//dwwa1pXd0=";
-  };
-
-  vendorHash = "sha256-5UdKjxs0f8dHTzWvHpMbYSCcIqTU5aT5anNVk0O94tw=";
-
-  ldflags = [
-    "-s"
-    "-w"
-    "-X=github.com/kubefirst/runtime/configs.K1Version=v${version}"
-  ];
-
-  doCheck = false;
-
-  meta = with lib; {
-    description = "Tool to create instant GitOps platforms that integrate some of the best tools in cloud native from scratch";
-    mainProgram = "kubefirst";
-    homepage = "https://github.com/kubefirst/kubefirst/";
-    changelog = "https://github.com/kubefirst/kubefirst/releases/tag/v${version}";
-    license = licenses.mit;
-    maintainers = with maintainers; [ qjoly ];
-  };
-}