42 lines
1007 B
Nix
42 lines
1007 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
versionCheckHook,
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "hcdiag";
|
|
version = "0.5.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hashicorp";
|
|
repo = "hcdiag";
|
|
tag = "v${version}";
|
|
hash = "sha256-6qsp74wp8LCBgeQTn4Edms8kzpKx9O4soGRwIFUVIk4=";
|
|
};
|
|
|
|
vendorHash = "sha256-ZuG++2bItCdnTcSaeBumIS2DqF+U6ZP7UTYM2DC+YGw=";
|
|
|
|
nativeInstallCheckHooks = [
|
|
versionCheckHook
|
|
];
|
|
versionCheckProgramArg = "--version";
|
|
doInstallCheck = true;
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Collects and bundles product and platform diagnostics supporting Consul, Nomad, TFE, and Vault";
|
|
homepage = "https://github.com/hashicorp/hcdiag";
|
|
changelog = "https://github.com/hashicorp/hcdiag/raw/v${version}/CHANGELOG.md";
|
|
license = lib.licenses.mpl20;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ ethancedwards8 ];
|
|
mainProgram = "hcdiag";
|
|
};
|
|
}
|