vscode-extensions.hashicorp.terraform: 2.34.3 -> 2.34.4 (#415691)

This commit is contained in:
Pol Dellaiera 2025-06-13 11:57:31 +02:00 committed by GitHub
commit 8fba93d37d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,21 +1,32 @@
{
lib,
vscode-utils,
jq,
moreutils,
terraform-ls,
vscode-extension-update-script,
}:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "terraform";
publisher = "hashicorp";
version = "2.34.3";
hash = "sha256-kE9xH0cp741aCqhrwFDW+lQxOAsdLNzCCOTWMxd+li0=";
version = "2.34.4";
hash = "sha256-gTU37q7kh51CxqQE7KylSwEK4ubiUU5uihbFew/Fg98=";
};
postPatch = ''
substituteInPlace dist/extension.js \
--replace-fail 'this.customBinPath=Ga("terraform").get("languageServer.path")' 'this.customBinPath = Ga("terraform").get("languageServer.path") || '${terraform-ls}/bin/terraform-ls';'
postInstall = ''
cd "$out/$installPrefix"
${lib.getExe jq} '.contributes.configuration[0].properties."terraform.languageServer.path".default = "${terraform-ls}/bin/terraform-ls"' package.json | ${lib.getExe' moreutils "sponge"} package.json
'';
passthru.updateScript = vscode-extension-update-script {
extraArgs = [
"--override-filename"
"pkgs/applications/editors/vscode/extensions/hashicorp.terraform/default.nix"
];
};
meta = {
license = lib.licenses.mit;
maintainers = [ lib.maintainers.rhoriguchi ];