terraform-docs: 0.16.0 -> 0.17.0 (#282495)
This commit is contained in:
parent
edcff388a0
commit
97f2b81fed
2 changed files with 2706 additions and 4 deletions
|
@ -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
Loading…
Reference in a new issue