tfplugindocs: init at 0.9.0

main
Antoine Eiche 2 years ago
parent cb26845685
commit 360206abd0
  1. 22
      pkgs/development/tools/tfplugindocs/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,22 @@
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "tfplugindocs";
version = "0.9.0";
src = fetchFromGitHub {
owner = "hashicorp";
repo = "terraform-plugin-docs";
rev = "v${version}";
sha256 = "sha256-1grwbi/nG0d2NwEE/eOeo1+0uGpZ1BRJdubyLwhvKfU=";
};
vendorSha256 = "sha256-VhnPRBVlvR/Xh7wkX7qx0m5s+yBOCJQE1zcAe8//lNw=";
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 ];
};
}

@ -1213,6 +1213,8 @@ with pkgs;
tfk8s = callPackage ../tools/misc/tfk8s { };
tfplugindocs = callPackage ../development/tools/tfplugindocs { };
thumbs = callPackage ../tools/misc/thumbs { };
tnat64 = callPackage ../tools/networking/tnat64 { };

Loading…
Cancel
Save