vscode-extensions.dendron.dendron: init at 0.124.0

This commit is contained in:
Ivy Fan-Chiang 2025-02-04 14:43:12 -05:00
parent 2900ca13a5
commit 04c8fc297e
No known key found for this signature in database
GPG key ID: 37664215B5B9EE1C
2 changed files with 20 additions and 0 deletions

View file

@ -1314,6 +1314,8 @@ let
};
};
dendron.dendron = callPackage ./dendron.dendron { };
denoland.vscode-deno = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vscode-deno";

View file

@ -0,0 +1,18 @@
{ lib, vscode-utils }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "dendron";
publisher = "dendron";
version = "0.124.0";
hash = "sha256-/hxgmmiMUfBtPt5BcuNvtXs3LzDmPwDuUOyDf2udHws=";
};
meta = {
changelog = "https://github.com/dendronhq/dendron/blob/master/CHANGELOG.md";
description = "The personal knowledge management (PKM) tool that grows as you do!";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=dendron.dendron";
homepage = "https://www.dendron.so/";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.ivyfanchiang ];
};
}