nixpkgs/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
624 B
Nix
Raw Normal View History

2022-06-07 07:45:29 +00:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "tfplugindocs";
2023-03-18 01:03:30 +00:00
version = "0.14.1";
2022-06-07 07:45:29 +00:00
src = fetchFromGitHub {
owner = "hashicorp";
repo = "terraform-plugin-docs";
rev = "v${version}";
2023-03-18 01:03:30 +00:00
sha256 = "sha256-GiMjm7XG/gFGOQXYeXsKbU7WQdrkQ0+J/SvfbLu24bo=";
2022-06-07 07:45:29 +00:00
};
2023-03-18 01:03:30 +00:00
vendorHash = "sha256-qUlyOAiLzLgrtaAfs/aGpAikGmGcQ9PI7QRyp9+Qn4w=";
2022-06-07 07:45:29 +00: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 ];
};
}