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

42 lines
1007 B
Nix
Raw Permalink Normal View History

{
lib,
buildGoModule,
fetchFromGitHub,
versionCheckHook,
nix-update-script,
}:
buildGoModule rec {
pname = "hcdiag";
2025-06-29 23:55:47 +00:00
version = "0.5.8";
src = fetchFromGitHub {
owner = "hashicorp";
repo = "hcdiag";
tag = "v${version}";
2025-06-29 23:55:47 +00:00
hash = "sha256-6qsp74wp8LCBgeQTn4Edms8kzpKx9O4soGRwIFUVIk4=";
};
2025-04-09 08:51:52 +00:00
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";
};
}