1{ lib, vscode-utils }:
2
3vscode-utils.buildVscodeMarketplaceExtension {
4 mktplcRef = {
5 name = "mongodb-vscode";
6 publisher = "mongodb";
7 version = "1.13.3";
8 hash = "sha256-SCKo1yUnv3FVy19DHEUH1dkubGLjzZbF3Gq9YTsVpxw=";
9 };
10
11 meta = {
12 changelog = "https://github.com/mongodb-js/vscode/blob/main/CHANGELOG.md";
13 description = "Extension for VS Code that makes it easy to work with your data in MongoDB";
14 downloadPage = "https://marketplace.visualstudio.com/items?itemName=mongodb.mongodb-vscode";
15 homepage = "https://github.com/mongodb-js/vscode";
16 license = lib.licenses.asl20;
17 maintainers = with lib.maintainers; [ drupol ];
18 };
19}