about summary refs log tree commit diff
path: root/pkgs/applications/logging
diff options
context:
space:
mode:
authorLuc Perkins <lucperkins@gmail.com>2024-05-03 15:37:38 -0300
committerLuc Perkins <lucperkins@gmail.com>2024-05-03 15:37:38 -0300
commit1271860b5eb39783f3bba73bcebc9592da2d181f (patch)
tree90e1f65131c0dfc70217c543a19258e0c11204fd /pkgs/applications/logging
parent84419726dfc85347db77b91263656846100c9471 (diff)
Move lucperkins packages into by-name
Diffstat (limited to 'pkgs/applications/logging')
-rw-r--r--pkgs/applications/logging/humioctl/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/applications/logging/humioctl/default.nix b/pkgs/applications/logging/humioctl/default.nix
deleted file mode 100644
index d9f780c0b3a21..0000000000000
--- a/pkgs/applications/logging/humioctl/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ buildGoModule, fetchFromGitHub, installShellFiles, lib }:
-
-buildGoModule rec {
-  pname = "humioctl";
-  version = "0.32.3";
-
-  src = fetchFromGitHub {
-    owner = "humio";
-    repo = "cli";
-    rev = "v${version}";
-    hash = "sha256-MaBJL/3TZYmXjwt5/WmBBTXVhlJ6oyCgm+Lb8id6J3c=";
-  };
-
-  vendorHash = "sha256-FAy0LNmesEDgS3JTz5DPd8vkR5CHHhAbms++N8TQApA=";
-
-  ldflags = [ "-s" "-w" "-X main.version=${version}" ];
-
-  nativeBuildInputs = [ installShellFiles ];
-
-  postInstall = ''
-    installShellCompletion --cmd humioctl \
-      --bash <($out/bin/humioctl completion bash) \
-      --zsh <($out/bin/humioctl completion zsh)
-  '';
-
-  meta = with lib; {
-    homepage = "https://github.com/humio/cli";
-    description = "A CLI for managing and sending data to Humio";
-    license = licenses.asl20;
-    maintainers = with maintainers; [ lucperkins ];
-    mainProgram = "humioctl";
-  };
-}