Unverified Commit 757189b3 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

vscode-extensions.ms-windows-ai-studio.windows-ai-studio: init at 0.6.1 (#354817)

parents 214d9423 8b2a02dc
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -3627,8 +3627,14 @@ let
        };
      };

      ms-vscode-remote.vscode-remote-extensionpack =
        callPackage ./ms-vscode-remote.vscode-remote-extensionpack
          { };

      ms-vsliveshare.vsliveshare = callPackage ./ms-vsliveshare.vsliveshare { };

      ms-windows-ai-studio.windows-ai-studio = callPackage ./ms-windows-ai-studio.windows-ai-studio { };

      mshr-h.veriloghdl = buildVscodeMarketplaceExtension {
        mktplcRef = {
          name = "veriloghdl";
+20 −0
Original line number Diff line number Diff line
{
  lib,
  vscode-utils,
}:

vscode-utils.buildVscodeMarketplaceExtension {
  mktplcRef = {
    name = "vscode-remote-extensionpack";
    publisher = "ms-vscode-remote";
    version = "0.26.0";
    hash = "sha256-YUo0QbJILa9BzWub6Wi6cDD/Zsy/H8LZ8j+9H+5pVHY=";
  };

  meta = {
    description = "A Visual Studio Code extension pack that lets you open any folder in a container, on a remote machine, or in WSL and take advantage of VS Code's full feature set";
    homepage = "https://github.com/Microsoft/vscode-remote-release";
    license = lib.licenses.unfree;
    maintainers = with lib.maintainers; [ drupol ];
  };
}
+20 −0
Original line number Diff line number Diff line
{
  lib,
  vscode-utils,
}:

vscode-utils.buildVscodeMarketplaceExtension {
  mktplcRef = {
    name = "windows-ai-studio";
    publisher = "ms-windows-ai-studio";
    version = "0.6.1";
    hash = "sha256-BAA7wSfyJ4y8how+NnaGdCf/BCU6aOmI8ew8qpcQCnY=";
  };

  meta = {
    description = "A Visual Studio Code an extension to help developers and AI engineers to easily build AI apps through developing and testing with generative AI models locally or in the cloud";
    homepage = "https://github.com/Microsoft/windows-ai-studio";
    license = lib.licenses.unfree;
    maintainers = with lib.maintainers; [ drupol ];
  };
}