nixpkgs-suyu/pkgs/applications/logging/humioctl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1 KiB
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, installShellFiles, lib }:
2020-07-25 20:58:00 +02:00
let
2022-10-11 22:27:08 +02:00
humioCtlVersion = "0.30.2";
sha256 = "sha256-FqBS6PoEKMqK590f58re4ycYmrJScyij74Ngj+PLzLs=";
2022-08-19 15:39:51 +02:00
vendorSha256 = "sha256-70QxW2nn6PS6HZWllmQ8O39fbUcbe4c/nKAygLnD4n0=";
2020-07-25 20:58:00 +02:00
in buildGoModule {
name = "humioctl-${humioCtlVersion}";
pname = "humioctl";
version = humioCtlVersion;
vendorSha256 = vendorSha256;
doCheck = false;
2020-07-25 20:58:00 +02:00
src = fetchFromGitHub {
owner = "humio";
repo = "cli";
rev = "v${humioCtlVersion}";
sha256 = sha256;
};
2021-08-26 08:45:51 +02:00
ldflags = [ "-X main.version=${humioCtlVersion}" ];
2020-07-25 20:58:00 +02:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
$out/bin/humioctl completion bash > humioctl.bash
$out/bin/humioctl completion zsh > humioctl.zsh
installShellCompletion humioctl.{bash,zsh}
'';
meta = with lib; {
2020-07-25 20:58:00 +02:00
homepage = "https://github.com/humio/cli";
description = "A CLI for managing and sending data to Humio";
license = licenses.asl20;
maintainers = with maintainers; [ lucperkins ];
};
}