Loading pkgs/applications/editors/vscode/extensions/hashicorp.terraform/default.nix +16 −5 Original line number Diff line number Diff line { 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 ]; Loading Loading
pkgs/applications/editors/vscode/extensions/hashicorp.terraform/default.nix +16 −5 Original line number Diff line number Diff line { 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 ]; Loading