vscode-extensions.jackmacwindows.craftos-pc: init at 1.2.2
This commit is contained in:
parent
a819aea202
commit
ee181285b1
1 changed files with 34 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
||||||
, clojure-lsp
|
, clojure-lsp
|
||||||
, alejandra
|
, alejandra
|
||||||
, millet
|
, millet
|
||||||
|
, craftos-pc
|
||||||
, shfmt
|
, shfmt
|
||||||
, typst-lsp
|
, typst-lsp
|
||||||
, typst-preview
|
, typst-preview
|
||||||
|
@ -1991,6 +1992,39 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
jackmacwindows.craftos-pc = buildVscodeMarketplaceExtension {
|
||||||
|
mktplcRef = {
|
||||||
|
name = "craftos-pc";
|
||||||
|
publisher = "jackmacwindows";
|
||||||
|
version = "1.2.2";
|
||||||
|
sha256 = "sha256-A+MNroXv0t9Mw/gr0Fyov3cXyF/GGzwRLKrIxQ2tKCE=";
|
||||||
|
};
|
||||||
|
nativeBuildInputs = [ jq moreutils ];
|
||||||
|
postInstall = ''
|
||||||
|
cd "$out/$installPrefix"
|
||||||
|
|
||||||
|
jq -e '
|
||||||
|
.contributes.configuration.properties."craftos-pc.executablePath.linux".default =
|
||||||
|
"${lib.meta.getExe craftos-pc}" |
|
||||||
|
.contributes.configuration.properties."craftos-pc.executablePath.mac".default =
|
||||||
|
"${lib.meta.getExe craftos-pc}" |
|
||||||
|
.contributes.configuration.properties."craftos-pc.executablePath.windows".default =
|
||||||
|
"${lib.meta.getExe craftos-pc}"
|
||||||
|
' \
|
||||||
|
< package.json \
|
||||||
|
| sponge package.json
|
||||||
|
'';
|
||||||
|
meta = {
|
||||||
|
changelog = "https://marketplace.visualstudio.com/items/jackmacwindows.craftos-pc/changelog";
|
||||||
|
description = "A Visual Studio Code extension for opening a CraftOS-PC window";
|
||||||
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=jackmacwindows.craftos-pc";
|
||||||
|
homepage = "https://www.craftos-pc.cc/docs/extension";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ tomodachi94 ];
|
||||||
|
platforms = craftos-pc.meta.platforms;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
james-yu.latex-workshop = buildVscodeMarketplaceExtension {
|
james-yu.latex-workshop = buildVscodeMarketplaceExtension {
|
||||||
mktplcRef = {
|
mktplcRef = {
|
||||||
name = "latex-workshop";
|
name = "latex-workshop";
|
||||||
|
|
Loading…
Reference in a new issue