Unverified Commit 04d8a574 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

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

parents 1851202d 60ba1c32
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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";
+29 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}