helm-dashboard: init at 1.3.1 (#231299)

* helm-dashboard: init at 1.3.1

Update pkgs/applications/networking/cluster/helm-dashboard/default.nix

Co-authored-by: Bruno BELANYI <bruno@belanyi.fr>

Explanation of why the tests are disabled

* Update pkgs/applications/networking/cluster/helm-dashboard/default.nix

---------

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Quentin JOLY 2023-05-18 23:48:48 +02:00 committed by GitHub
parent 8850ac82a3
commit bec29a0327
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "helm-dashboard";
version = "1.3.1";
src = fetchFromGitHub {
owner = "komodorio";
repo = pname;
rev = "v${version}";
sha256 = "sha256-D9da40+DbU1EMdR/a4ahLtqlzwPdcHOiAJtPjKZ2Ehc=";
};
vendorHash = "sha256-LJVL20CsDxaAJ/qS+2P7Pv/jhyRO6WAmhGLCR9CmQKE=";
# tests require internet access
doCheck = false;
ldflags = [ "-s" "-w" "-X main.version=v${version}" ];
meta = {
description = "A simplified way of working with Helm";
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 ];
};
}

View file

@ -38865,6 +38865,8 @@ with pkgs;
helmfile = callPackage ../applications/networking/cluster/helmfile { };
helm-dashboard = callPackage ../applications/networking/cluster/helm-dashboard { };
helmsman = callPackage ../applications/networking/cluster/helmsman { };
velero = callPackage ../applications/networking/cluster/velero { };