23 lines
668 B
Nix
23 lines
668 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
vscode-utils,
|
||
|
|
}:
|
||
|
|
|
||
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
||
|
|
mktplcRef = {
|
||
|
|
publisher = "ms-azuretools";
|
||
|
|
name = "vscode-containers";
|
||
|
|
version = "2.2.0";
|
||
|
|
hash = "sha256-UxWsu7AU28plnT0QMdpPJrcYZIV09FeC+rmYKf39a6M=";
|
||
|
|
};
|
||
|
|
|
||
|
|
meta = {
|
||
|
|
changelog = "https://github.com/microsoft/vscode-containers/releases";
|
||
|
|
description = "Container Tools Extension for Visual Studio Code ";
|
||
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-containers";
|
||
|
|
homepage = "https://github.com/microsoft/vscode-containers";
|
||
|
|
license = lib.licenses.mit;
|
||
|
|
maintainers = [ lib.maintainers.m0nsterrr ];
|
||
|
|
};
|
||
|
|
}
|