vscode-extensions.mongodb.mongodb-vscode: init at 1.7.0

This commit is contained in:
Pol Dellaiera 2024-08-10 16:11:08 +02:00
parent 0a21feb643
commit 2a085e2f43
No known key found for this signature in database
GPG key ID: D476DFE9C67467CA
2 changed files with 21 additions and 0 deletions

View file

@ -3089,6 +3089,8 @@ let
};
};
mongodb.mongodb-vscode = callPackage ./mongodb.mongodb-vscode { };
moshfeu.compare-folders = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "compare-folders";

View file

@ -0,0 +1,19 @@
{ lib, vscode-utils }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "mongodb-vscode";
publisher = "mongodb";
version = "1.7.0";
hash = "sha256-EDU8kQLTQIe5D905ZVskFt/28Mzv1Zr7auqG4tksQ/o=";
};
meta = {
changelog = "https://github.com/mongodb-js/vscode/blob/main/CHANGELOG.md";
description = "An extension for VS Code that makes it easy to work with your data in MongoDB";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=mongodb.mongodb-vscode";
homepage = "https://github.com/mongodb-js/vscode";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ drupol ];
};
}