18 lines
617 B
Nix
18 lines
617 B
Nix
|
|
{ lib, vscode-utils, ... }:
|
||
|
|
|
||
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
||
|
|
mktplcRef = {
|
||
|
|
name = "dendron-paste-image";
|
||
|
|
publisher = "dendron";
|
||
|
|
version = "1.1.3";
|
||
|
|
hash = "sha256-nnaHXQAOEblQRKqbDIsuTVrdh3BlDnWJGy9ai2bv02c=";
|
||
|
|
};
|
||
|
|
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 ];
|
||
|
|
};
|
||
|
|
}
|