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-01 15:02:44 +00:00
version = "0.14.0";
2022-06-07 07:45:29 +00:00
src = fetchFromGitHub {
owner = "hashicorp";
repo = "terraform-plugin-docs";
rev = "v${version}";
2023-03-01 15:02:44 +00:00
sha256 = "sha256-adOaX8VxMytnALkuXBlmRKfRmk6x7bHTg/oEJQiJ1+U=";
2022-06-07 07:45:29 +00:00
};
2023-03-01 15:02:44 +00:00
vendorHash = "sha256-Qo8L0Rm7ZxcZ9YZTqfx51Tt8DRj4M+be6NdrsrwRt30=";
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 ];
};
}