vscode-extensions.jebbs.plantuml: init at 2.17.4
This commit is contained in:
parent
5f87f6f3a0
commit
5ca3d56bc1
@ -1453,6 +1453,8 @@ let
|
||||
};
|
||||
};
|
||||
|
||||
jebbs.plantuml = callPackage ./jebbs.plantuml {};
|
||||
|
||||
jnoortheen.nix-ide = buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
name = "nix-ide";
|
||||
|
@ -0,0 +1,27 @@
|
||||
{ lib, vscode-utils, plantuml, jq, moreutils }:
|
||||
|
||||
vscode-utils.buildVscodeMarketplaceExtension {
|
||||
mktplcRef = {
|
||||
name = "plantuml";
|
||||
publisher = "jebbs";
|
||||
version = "2.17.4";
|
||||
sha256 = "sha256-fnz6ubB73i7rJcv+paYyNV1r4cReuyFPjgPM0HO40ug=";
|
||||
};
|
||||
nativeBuildInputs = [ jq moreutils ];
|
||||
postInstall = ''
|
||||
cd "$out/$installPrefix"
|
||||
jq '.contributes.configuration.properties."plantuml.java".default = "${plantuml}/bin/plantuml"' package.json | sponge package.json
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Visual Studio Code extension for supporting Rich PlantUML";
|
||||
downloadPage =
|
||||
"https://marketplace.visualstudio.com/items?itemName=jebbs.plantuml";
|
||||
homepage = "https://github.com/qjebbs/vscode-plantuml";
|
||||
changelog =
|
||||
"https://marketplace.visualstudio.com/items/jebbs.plantuml/changelog";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ victormignot ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user