3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/cluster/terraform-docs/default.nix

24 lines
663 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
2018-12-06 11:10:36 +00:00
pname = "terraform-docs";
2021-08-11 08:01:13 +01:00
version = "0.15.0";
2018-12-06 11:10:36 +00:00
src = fetchFromGitHub {
owner = "terraform-docs";
repo = pname;
rev = "v${version}";
2021-08-11 08:01:13 +01:00
sha256 = "sha256-PzGlEEhootf2SCOy7+11aST7NMTNhNMQWeZO40mrMYQ=";
2018-12-06 11:10:36 +00:00
};
2021-08-11 08:01:13 +01:00
vendorSha256 = "sha256-T/jgFPBUQMATX7DoWsDR/VFjka7Vxk7F4taE25cdnTk=";
subPackages = [ "." ];
2018-12-06 11:10:36 +00:00
meta = with lib; {
description = "A utility to generate documentation from Terraform modules in various output formats";
homepage = "https://github.com/terraform-docs/terraform-docs/";
2018-12-06 11:10:36 +00:00
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
};
}