mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
vscode-extensions.ms-vscode.remote-explorer: init at 0.5.0 (#414942)
This commit is contained in:
commit
884b6aefa0
2 changed files with 22 additions and 0 deletions
|
@ -3538,6 +3538,8 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
ms-vscode.remote-explorer = callPackage ./ms-vscode.remote-explorer { };
|
||||
|
||||
ms-vscode.test-adapter-converter = buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
name = "test-adapter-converter";
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
lib,
|
||||
vscode-utils,
|
||||
}:
|
||||
|
||||
vscode-utils.buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
name = "remote-explorer";
|
||||
publisher = "ms-vscode";
|
||||
version = "0.5.0";
|
||||
sha256 = "sha256-BNsnetpddxv3Y9MjZERU5jOq1I2g6BNFF1rD7Agpmr8=";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Visual Studio Code extension to view remote machines for SSH and Tunnels";
|
||||
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-vscode.remote-explorer";
|
||||
homepage = "https://github.com/Microsoft/vscode-remote-release";
|
||||
license = lib.licenses.unfree;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue