vscode-extensions.ethersync.ethersync: init at 0.2.1 (#425164)

This commit is contained in:
Pol Dellaiera 2025-07-16 10:17:48 +02:00 committed by GitHub
commit c9378dae47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 24 additions and 0 deletions

View File

@ -1789,6 +1789,8 @@ let
};
};
ethersync.ethersync = callPackage ./ethersync.ethersync { };
eugleo.magic-racket = callPackage ./eugleo.magic-racket { };
ExiaHuang.dictionary = buildVscodeMarketplaceExtension {

View File

@ -0,0 +1,22 @@
{
lib,
vscode-utils,
}:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
publisher = "ethersync";
name = "ethersync";
version = "0.2.1";
hash = "sha256-/oRpoYMWSpkAEM89KlJnSJ7TWwcGloYHXh80Ml+vz+M=";
};
meta = {
description = "Extension for real-time co-editing of local text files";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ethersync.ethersync";
homepage = "https://github.com/ethersync/ethersync/tree/main/vscode-plugin";
license = lib.licenses.agpl3Plus;
maintainers = [ lib.maintainers.ethancedwards8 ];
teams = [ lib.teams.ngi ];
};
}