Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 vscode-utils, 4}: 5 6vscode-utils.buildVscodeMarketplaceExtension { 7 mktplcRef = { 8 publisher = "ethersync"; 9 name = "ethersync"; 10 version = "0.2.1"; 11 hash = "sha256-/oRpoYMWSpkAEM89KlJnSJ7TWwcGloYHXh80Ml+vz+M="; 12 }; 13 14 meta = { 15 description = "Extension for real-time co-editing of local text files"; 16 downloadPage = "https://marketplace.visualstudio.com/items?itemName=ethersync.ethersync"; 17 homepage = "https://github.com/ethersync/ethersync/tree/main/vscode-plugin"; 18 license = lib.licenses.agpl3Plus; 19 maintainers = [ lib.maintainers.ethancedwards8 ]; 20 teams = [ lib.teams.ngi ]; 21 }; 22}