|
| 1 | +# Baseed on previous attempts of others: https://github.com/NixOS/nixpkgs/issues/41189 |
| 2 | +{ lib, vscode-utils, autoPatchelfHook, bash, dos2unix, file, makeWrapper, dotnet-sdk |
| 3 | +, curl, gcc, icu, libkrb5, libsecret, libunwind, libX11, lttng-ust, openssl, utillinux, zlib |
| 4 | +, enableDiagnosticsWorkaround ? false, gccStdenv |
| 5 | +}: |
| 6 | + |
| 7 | +with lib; |
| 8 | + |
| 9 | +let |
| 10 | + # https://docs.microsoft.com/en-us/visualstudio/liveshare/reference/linux#install-prerequisites-manually |
| 11 | + libs = [ |
| 12 | + # .NET Core |
| 13 | + openssl |
| 14 | + libkrb5 |
| 15 | + zlib |
| 16 | + icu |
| 17 | + |
| 18 | + # Credential Storage |
| 19 | + libsecret |
| 20 | + |
| 21 | + # NodeJS |
| 22 | + libX11 |
| 23 | + |
| 24 | + # https://github.com/flathub/com.visualstudio.code.oss/issues/11#issuecomment-392709170 |
| 25 | + libunwind |
| 26 | + lttng-ust |
| 27 | + curl |
| 28 | + |
| 29 | + # General |
| 30 | + gcc.cc.lib |
| 31 | + utillinux # libuuid |
| 32 | + ]; |
| 33 | + |
| 34 | + vscode-utils' = if enableDiagnosticsWorkaround |
| 35 | + then vscode-utils.override { stdenv = gccStdenv; } |
| 36 | + else vscode-utils; |
| 37 | + |
| 38 | +in (vscode-utils'.buildVscodeMarketplaceExtension { |
| 39 | + mktplcRef = { |
| 40 | + name = "vsliveshare"; |
| 41 | + publisher = "ms-vsliveshare"; |
| 42 | + version = "1.0.67"; |
| 43 | + sha256 = "1shy9xaqz1wsyzzz5z8g409ma5h5kaic0y7bc1q2nxy60gbq828n"; |
| 44 | + }; |
| 45 | +}).overrideAttrs(attrs: { |
| 46 | + prePatch = '' |
| 47 | + dos2unix out/prod/extension-prod.js |
| 48 | + ''; |
| 49 | + |
| 50 | + patches = [ ./extension-prod.js.patch ]; |
| 51 | + |
| 52 | + buildInputs = attrs.buildInputs ++ libs ++ [ autoPatchelfHook bash dos2unix file makeWrapper ]; |
| 53 | + |
| 54 | + installPhase = attrs.installPhase + '' |
| 55 | + runHook postInstall |
| 56 | + ''; |
| 57 | + |
| 58 | + postInstall = '' |
| 59 | + bash -s <<ENDSUBSHELL |
| 60 | + shopt -s extglob |
| 61 | + cd $out/share/vscode/extensions/ms-vsliveshare.vsliveshare |
| 62 | +
|
| 63 | + # A workaround to prevent the journal filling up due to diagnostic logging. |
| 64 | + ${optionalString enableDiagnosticsWorkaround '' |
| 65 | + gcc -fPIC -shared -ldl -o dotnet_modules/noop-syslog.so ${./noop-syslog.c} |
| 66 | + ''} |
| 67 | +
|
| 68 | + # Normally the copying of the right executables and libraries is done externally at a later time, |
| 69 | + # but we want it done at installation time. |
| 70 | + # FIXME: Surely there is a better way than copying over the shared .NET libraries. |
| 71 | + cp \ |
| 72 | + ${dotnet-sdk}/shared/Microsoft.NETCore.App/*/* \ |
| 73 | + dotnet_modules/runtimes/linux-x64/!(native) \ |
| 74 | + dotnet_modules/runtimes/linux-x64/native/* \ |
| 75 | + dotnet_modules/runtimes/unix/lib/netstandard1.3/* \ |
| 76 | + dotnet_modules |
| 77 | +
|
| 78 | + # Those we need are already copied over, the rest is just a waste of space. |
| 79 | + rm -r dotnet_modules/runtimes |
| 80 | +
|
| 81 | + # Not all executables and libraries are executable, so make sure that they are. |
| 82 | + find . -type f ! -executable -exec file {} + | grep -w ELF | cut -d ':' -f1 | tr '\n' '\0' | xargs -0r -n1 chmod +x |
| 83 | +
|
| 84 | + # Not all scripts are executed by passing them to a shell, so they need to be executable as well. |
| 85 | + find . -type f -name '*.sh' ! -executable -exec chmod +x {} + |
| 86 | +
|
| 87 | + # Lock the extension downloader. |
| 88 | + touch install-linux.Lock externalDeps-linux.Lock |
| 89 | + ENDSUBSHELL |
| 90 | + ''; |
| 91 | + |
| 92 | + rpath = makeLibraryPath libs; |
| 93 | + |
| 94 | + postFixup = '' |
| 95 | + root=$out/share/vscode/extensions/ms-vsliveshare.vsliveshare |
| 96 | +
|
| 97 | + # We cannot use `wrapProgram`, because it will generate a relative path, |
| 98 | + # which breaks our workaround that makes the extension directory writable. |
| 99 | + mv $root/dotnet_modules/vsls-agent{,-wrapped} |
| 100 | + makeWrapper $root/dotnet_modules/vsls-agent{-wrapped,} \ |
| 101 | + --prefix LD_LIBRARY_PATH : "$rpath" ${optionalString enableDiagnosticsWorkaround ''\ |
| 102 | + --set LD_PRELOAD "$root/dotnet_modules/noop-syslog.so" |
| 103 | + ''} |
| 104 | + ''; |
| 105 | + |
| 106 | + meta = { |
| 107 | + description = "Live Share lets you achieve greater confidence at speed by streamlining collaborative editing, debugging, and more in real-time during development"; |
| 108 | + homepage = https://aka.ms/vsls-docs; |
| 109 | + license = licenses.unfree; |
| 110 | + maintainers = with maintainers; [ msteen ]; |
| 111 | + platforms = [ "x86_64-linux" ]; |
| 112 | + }; |
| 113 | +}) |
0 commit comments