20 lines
641 B
Nix
20 lines
641 B
Nix
|
|
{ lib, vscode-utils }:
|
||
|
|
|
||
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
||
|
|
mktplcRef = {
|
||
|
|
name = "mongodb-vscode";
|
||
|
|
publisher = "mongodb";
|
||
|
|
version = "1.14.0";
|
||
|
|
hash = "sha256-cd/dJO2I9heMVNJjGlBO1+c3wGVF+EuycDa+s/aDBxM=";
|
||
|
|
};
|
||
|
|
|
||
|
|
meta = {
|
||
|
|
changelog = "https://github.com/mongodb-js/vscode/blob/main/CHANGELOG.md";
|
||
|
|
description = "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 = [ ];
|
||
|
|
};
|
||
|
|
}
|