nixpkgs/pkgs/applications/editors/vscode/extensions/ms-vsliveshare.vsliveshare/default.nix
V 3cce2022ec vscode-extensions.ms-vsliveshare.vsliveshare: 1.0.5900 -> 1.0.5918
In addition, this cleans up the package, and enables it on platforms
other than x86_64-linux (which had been supported for a while).

Change-Id: I4e61973222af3eb74b69d6fd08f211815c30b4c6
2024-04-06 01:25:14 +02:00

24 lines
712 B
Nix

{ lib, vscode-utils, xsel }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vsliveshare";
publisher = "ms-vsliveshare";
version = "1.0.5918";
hash = "sha256-Tk0mKydUF8M7l7NC9wEA7t2rzJWy/mq4/HvIHI2/ldQ=";
};
postPatch = ''
substituteInPlace extension.js \
--replace-fail '"xsel"' '"${xsel}/bin/xsel"'
'';
meta = {
description = "Real-time collaborative development for VS Code";
homepage = "https://aka.ms/vsls-docs";
changelog = "https://marketplace.visualstudio.com/items/MS-vsliveshare.vsliveshare/changelog";
license = lib.licenses.unfree;
maintainers = builtins.attrValues { inherit (lib.maintainers) jraygauthier V; };
};
}