Skip to content

Commit 146c62b

Browse files
committed
vscode-extensions.ms-vscode-remote.vscode-remote-extensionpack: init at 0.26.0
1 parent 3bf6a06 commit 146c62b

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3627,6 +3627,10 @@ 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

36323636
mshr-h.veriloghdl = buildVscodeMarketplaceExtension {
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+
}

0 commit comments

Comments
 (0)