nixpkgs-suyu/pkgs/development/tools/tfplugindocs/default.nix

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

23 lines
626 B
Nix
Raw Normal View History

2022-06-07 09:45:29 +02:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "tfplugindocs";
2022-07-31 05:23:51 +02:00
version = "0.13.0";
2022-06-07 09:45:29 +02:00
src = fetchFromGitHub {
owner = "hashicorp";
repo = "terraform-plugin-docs";
rev = "v${version}";
2022-07-31 05:23:51 +02:00
sha256 = "sha256-0FpzUJDFGKLe88QW+7UI6QPwFMUfqPindOHtGRpOLo8=";
2022-06-07 09:45:29 +02:00
};
2022-07-31 05:23:51 +02:00
vendorSha256 = "sha256-gKRgFfyUahWI+c97uYSCAGNoFy2RPgAw0uYGauEOLt8=";
2022-06-07 09:45:29 +02:00
meta = with lib; {
description = "Generate and validate Terraform plugin/provider documentation";
homepage = "https://github.com/hashicorp/terraform-plugin-docs";
license = licenses.mpl20;
maintainers = with maintainers; [ lewo ];
};
}