vscode-extensions.gplane.wasm-language-tools: init at 1.16.0 (#463362)

This commit is contained in:
Yohann Boniface
2026-01-02 20:43:00 +00:00
committed by GitHub
2 changed files with 31 additions and 0 deletions
@@ -2013,6 +2013,8 @@ let
Google.gemini-cli-vscode-ide-companion = callPackage ./Google.gemini-cli-vscode-ide-companion { };
gplane.wasm-language-tools = callPackage ./gplane.wasm-language-tools { };
grapecity.gc-excelviewer = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "gc-excelviewer";
@@ -0,0 +1,29 @@
{
lib,
vscode-utils,
wasm-language-tools,
}:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
publisher = "gplane";
name = "wasm-language-tools";
version = "1.16.0";
hash = "sha256-H2exVPaF8tYdpXBcooFi5bysp85OLOwxbKrB3HJes0Y=";
};
buildPhase = ''
runHook preBuild
ln -s ${wasm-language-tools}/bin bin
runHook postBuild
'';
meta = {
changelog = "https://marketplace.visualstudio.com/items/gplane.wasm-language-tools/changelog";
description = "Language support of WebAssembly";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=gplane.wasm-language-tools";
homepage = "https://github.com/g-plane/vscode-wasm";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ samestep ];
};
}