Skip to content

Commit

Permalink
hcdiag: init at 0.5.5
Browse files Browse the repository at this point in the history
Signed-off-by: Ethan Carter Edwards <[email protected]>
  • Loading branch information
ethancedwards8 committed Jan 12, 2025
1 parent 8a7f04a commit b3ccabc
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/by-name/hc/hcdiag/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:

buildGoModule rec {
pname = "hcdiag";
version = "0.5.5";

src = fetchFromGitHub {
owner = "hashicorp";
repo = "hcdiag";
tag = "v${version}";
hash = "sha256-ZzSGBw7DRh/VSDtXoMgJpGWVmJUF2G2yZaae+fKklMc=";
};

vendorHash = "sha256-MJg6mqG1bn941LqIr0TQhcgWBCwUtfujdpqf4rgCrWM=";

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";
};
}

0 comments on commit b3ccabc

Please sign in to comment.