Unverified Commit bec29a03 authored by Quentin JOLY's avatar Quentin JOLY Committed by GitHub
Browse files

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: default avatarBruno BELANYI <bruno@belanyi.fr>

Explanation of why the tests are disabled

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

---------

Co-authored-by: default avatarSandro <sandro.jaeckel@gmail.com>
parent 8850ac82
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };