Skip to content

Commit 757189b

Browse files
authored
vscode-extensions.ms-windows-ai-studio.windows-ai-studio: init at 0.6.1 (#354817)
2 parents 214d942 + 8b2a02d commit 757189b

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

pkgs/applications/editors/vscode/extensions/default.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3627,8 +3627,14 @@ let
36273627
};
36283628
};
36293629

3630+
ms-vscode-remote.vscode-remote-extensionpack =
3631+
callPackage ./ms-vscode-remote.vscode-remote-extensionpack
3632+
{ };
3633+
36303634
ms-vsliveshare.vsliveshare = callPackage ./ms-vsliveshare.vsliveshare { };
36313635

3636+
ms-windows-ai-studio.windows-ai-studio = callPackage ./ms-windows-ai-studio.windows-ai-studio { };
3637+
36323638
mshr-h.veriloghdl = buildVscodeMarketplaceExtension {
36333639
mktplcRef = {
36343640
name = "veriloghdl";
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
lib,
3+
vscode-utils,
4+
}:
5+
6+
vscode-utils.buildVscodeMarketplaceExtension {
7+
mktplcRef = {
8+
name = "vscode-remote-extensionpack";
9+
publisher = "ms-vscode-remote";
10+
version = "0.26.0";
11+
hash = "sha256-YUo0QbJILa9BzWub6Wi6cDD/Zsy/H8LZ8j+9H+5pVHY=";
12+
};
13+
14+
meta = {
15+
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";
16+
homepage = "https://github.com/Microsoft/vscode-remote-release";
17+
license = lib.licenses.unfree;
18+
maintainers = with lib.maintainers; [ drupol ];
19+
};
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
lib,
3+
vscode-utils,
4+
}:
5+
6+
vscode-utils.buildVscodeMarketplaceExtension {
7+
mktplcRef = {
8+
name = "windows-ai-studio";
9+
publisher = "ms-windows-ai-studio";
10+
version = "0.6.1";
11+
hash = "sha256-BAA7wSfyJ4y8how+NnaGdCf/BCU6aOmI8ew8qpcQCnY=";
12+
};
13+
14+
meta = {
15+
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";
16+
homepage = "https://github.com/Microsoft/windows-ai-studio";
17+
license = lib.licenses.unfree;
18+
maintainers = with lib.maintainers; [ drupol ];
19+
};
20+
}

0 commit comments

Comments
 (0)