terraform-docs: 0.16.0 -> 0.17.0 (#282495)

This commit is contained in:
Pravin Dahal 2024-01-23 20:53:50 +01:00 committed by GitHub
parent edcff388a0
commit 97f2b81fed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2706 additions and 4 deletions

View File

@ -1,16 +1,20 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub, go_1_21 }:
buildGoModule rec {
pname = "terraform-docs";
version = "0.16.0";
version = "0.17.0";
go = go_1_21;
src = fetchFromGitHub {
owner = "terraform-docs";
repo = pname;
rev = "v${version}";
sha256 = "sha256-zSSK2WfcbD1DvqsFUKdTydLfyApWzm1h+ihSnLUmq2E=";
sha256 = "sha256-HkkW6JX5wcGElmr6CiSukyeS/8rz4CUThy8rZfx4hbo=";
};
vendorHash = "sha256-0Bkjx/gq2MAWjxoMSGtBcRzv40SSUVDZBh4PzEtKj5o=";
patches = [ ./update-to-go-1.21.patch ];
vendorHash = "sha256-ZHWAiXJG8vCmUkf6GNxoIJbIEjEWukLdrmdIb64QleI=";
subPackages = [ "." ];

File diff suppressed because it is too large Load Diff