vscode-extensions.hashicorp.terraform: 2.9.1 -> 2.10.0

This commit is contained in:
Ryan Horiguchi 2021-04-14 00:38:46 +02:00
parent 570652d728
commit 61a092e6bf
No known key found for this signature in database
GPG key ID: CA7EE98D45A1132A

View file

@ -3,13 +3,13 @@ vscode-utils.buildVscodeMarketplaceExtension rec {
mktplcRef = {
name = "terraform";
publisher = "hashicorp";
version = "2.9.1";
version = "2.10.0";
};
vsix = fetchurl {
name = "${mktplcRef.publisher}-${mktplcRef.name}.zip";
url = "https://github.com/hashicorp/vscode-terraform/releases/download/v${mktplcRef.version}/terraform-${mktplcRef.version}.vsix";
sha256 = "1i4pzxw57hf2g7x62hfsb588b1lz3zjjh8ny96qqrif2bj2h887z";
url = "https://github.com/hashicorp/vscode-terraform/releases/download/v${mktplcRef.version}/${mktplcRef.name}-${mktplcRef.version}.vsix";
sha256 = "1xhypy4vvrzxj3qwkzpfx8b48hddf72mxmh0hgz7iry6bch6sh5f";
};
patches = [ ./fix-terraform-ls.patch ];