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";
version = "0.16.0";
2018-12-06 11:10:36 +00:00
src = fetchFromGitHub {
owner = "terraform-docs";
repo = pname;
rev = "v${version}";
sha256 = "sha256-zSSK2WfcbD1DvqsFUKdTydLfyApWzm1h+ihSnLUmq2E=";
2018-12-06 11:10:36 +00:00
};
vendorSha256 = "sha256-0Bkjx/gq2MAWjxoMSGtBcRzv40SSUVDZBh4PzEtKj5o=";
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 ];
};
}