Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
964 B
Nix
41 lines
964 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "helm-dashboard";
|
|
version = "1.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "komodorio";
|
|
repo = "helm-dashboard";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-hjIo2AEXNcFK0z4op59NnC2R8GspF5t808DZ72AxgMw=";
|
|
};
|
|
|
|
vendorHash = "sha256-ROffm1SGYnhUcp46nzQ951eaeQdO1pb+f8AInm0eSq0=";
|
|
|
|
# tests require internet access
|
|
doCheck = false;
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.version=v${version}"
|
|
];
|
|
|
|
meta = {
|
|
description = "Simplified way of working with Helm";
|
|
mainProgram = "helm-dashboard";
|
|
longDescription = ''
|
|
Helm Dashboard is an open-source project which offers a UI-driven way to view the installed Helm charts,
|
|
see their revision history and corresponding k8s resources.
|
|
'';
|
|
homepage = "https://github.com/komodorio/helm-dashboard/";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ qjoly ];
|
|
};
|
|
}
|