vscode-extensions.dendron.dendron-paste-image: init at 1.1.1

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

View file

@ -1320,6 +1320,8 @@ let
callPackage ./dendron.dendron-markdown-preview-enhanced
{ };
dendron.dendron-paste-image = callPackage ./dendron.dendron-paste-image { };
denoland.vscode-deno = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vscode-deno";

View file

@ -0,0 +1,17 @@
{ lib, vscode-utils, ... }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "dendron-paste-image";
publisher = "dendron";
version = "1.1.1";
hash = "sha256-SlW8MEWBgf8cJsdSzeegqPiAlEvlnrxuvrJJdhHwq2E=";
};
meta = {
description = "Paste images directly from your clipboard to markdown/asciidoc(or other file)!";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=dendron.dendron-paste-image";
homepage = "https://github.com/dendronhq/dendron-paste-image";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ivyfanchiang ];
};
}