vscode-extensions.dendron.dendron-snippet-maker: init at 0.1.6

This commit is contained in:
Ivy Fan-Chiang 2025-02-04 18:48:32 -05:00
parent 3dfa0dea9a
commit c6eb1703ea
No known key found for this signature in database
GPG key ID: 37664215B5B9EE1C
2 changed files with 19 additions and 0 deletions

View file

@ -1322,6 +1322,8 @@ let
dendron.dendron-paste-image = callPackage ./dendron.dendron-paste-image { };
dendron.dendron-snippet-maker = callPackage ./dendron.dendron-snippet-maker { };
denoland.vscode-deno = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vscode-deno";

View file

@ -0,0 +1,17 @@
{ lib, vscode-utils }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "dendron-snippet-maker";
publisher = "dendron";
version = "0.1.6";
hash = "sha256-KOIbAt6EjqRGaqOlCV+HO9phR4tk2KV/+FMCefCKN+8=";
};
meta = {
description = "Easily create markdown snippets. Used in Dendron but can also be used standalone.";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=dendron.dendron-snippet-maker";
homepage = "https://github.com/dendronhq/easy-snippet-maker";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ivyfanchiang ];
};
}