nixpkgs/pkgs/applications/networking/cluster/helm-docs/default.nix

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

31 lines
755 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "helm-docs";
2024-07-18 18:03:50 +00:00
version = "1.14.2";
src = fetchFromGitHub {
owner = "norwoodj";
repo = "helm-docs";
rev = "v${version}";
2024-07-18 18:03:50 +00:00
hash = "sha256-a7alzjh+vjJPw/g9yaYkOUvwpgiqCrtKTBkV1EuGYtk=";
};
2024-07-18 18:03:50 +00:00
vendorHash = "sha256-9VSjxnc804A+PTMy0ZoNWNkHAjh3/kMK0XoEfI/LgEY=";
subPackages = [ "cmd/helm-docs" ];
ldflags = [
"-w"
"-s"
2023-05-02 09:53:48 +00:00
"-X main.version=${version}"
];
meta = with lib; {
homepage = "https://github.com/norwoodj/helm-docs";
description = "Tool for automatically generating markdown documentation for Helm charts";
mainProgram = "helm-docs";
license = licenses.gpl3Only;
maintainers = with maintainers; [ sagikazarmark ];
};
}