Skip to content

Commit 62f9f14

Browse files
committed
vscode-extensions.ms-azuretools.vscode-containers: init at 2.0.3
Signed-off-by: Ludovic Ortega <[email protected]>
1 parent c3901ec commit 62f9f14

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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3268,6 +3268,8 @@ let
32683268

32693269
ms-azuretools.vscode-bicep = callPackage ./ms-azuretools.vscode-bicep { };
32703270

3271+
ms-azuretools.vscode-containers = callPackage ./ms-azuretools.vscode-containers { };
3272+
32713273
ms-azuretools.vscode-docker = buildVscodeMarketplaceExtension {
32723274
mktplcRef = {
32733275
publisher = "ms-azuretools";
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
lib,
3+
vscode-utils,
4+
}:
5+
6+
vscode-utils.buildVscodeMarketplaceExtension {
7+
mktplcRef = {
8+
publisher = "ms-azuretools";
9+
name = "vscode-containers";
10+
version = "2.0.3";
11+
hash = "sha256-MAeE99XmjIjYbr72UymnkrDKsNRSjNiB1jdffKTosHQ=";
12+
};
13+
14+
meta = {
15+
changelog = "https://github.com/microsoft/vscode-containers/releases";
16+
description = "Container Tools Extension for Visual Studio Code ";
17+
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-containers";
18+
homepage = "https://github.com/microsoft/vscode-containers";
19+
license = lib.licenses.mit;
20+
maintainers = [ lib.maintainers.m0nsterrr ];
21+
};
22+
}

0 commit comments

Comments
 (0)