mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
23 lines
624 B
Nix
23 lines
624 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "tfplugindocs";
|
|
version = "0.14.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hashicorp";
|
|
repo = "terraform-plugin-docs";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-GiMjm7XG/gFGOQXYeXsKbU7WQdrkQ0+J/SvfbLu24bo=";
|
|
};
|
|
|
|
vendorHash = "sha256-qUlyOAiLzLgrtaAfs/aGpAikGmGcQ9PI7QRyp9+Qn4w=";
|
|
|
|
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 ];
|
|
};
|
|
}
|