mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 03:03:37 +00:00
892a9971b0
A new symlink is required to fix the following error: [3744707:0100/000000.911609:ERROR:egl_util.cc(74)] Failed to load GLES library: libGLESv2.so.2: libGLESv2.so.2: cannot open shared object file: No such file or directory zsh: segmentation fault (core dumped) signal-desktop --enable-features=UseOzonePlatform --ozone-platform=wayland The GPU acceleration still fails (not sure if it worked before) but at least "signal-desktop --enable-features=UseOzonePlatform --ozone-platform=wayland" launches again (without "--disable-gpu"): [40492:0115/184719.611780:ERROR:gpu_process_host.cc(968)] GPU process exited unexpectedly: exit_code=139 [40492:0115/184720.256775:ERROR:gpu_process_host.cc(968)] GPU process exited unexpectedly: exit_code=139 [40492:0115/184720.892093:ERROR:gpu_process_host.cc(968)] GPU process exited unexpectedly: exit_code=139 [40620:0115/184721.033949:ERROR:sandbox_linux.cc(376)] InitializeSandbox() called with multiple threads in process gpu-process. [40620:0115/184721.069600:ERROR:gl_utils.cc(318)] [.RendererMainThread-0x227200113f00]GL Driver Message (OpenGL, Performance, GL_CLOSE_PATH_NV, High): GPU stall due to ReadPixels [40620:0115/184721.133265:ERROR:gl_utils.cc(318)] [.RendererMainThread-0x227200113f00]GL Driver Message (OpenGL, Performance, GL_CLOSE_PATH_NV, High): GPU stall due to ReadPixels [40620:0115/184721.158341:ERROR:gl_utils.cc(318)] [.RendererMainThread-0x227200113f00]GL Driver Message (OpenGL, Performance, GL_CLOSE_PATH_NV, High): GPU stall due to ReadPixels (After three GPU process crashes Chromium should automatically fall back to software rendering.) Fix #155050 (it only fixes the crashes though, not the underlying issue, but that's likely all we can do for the moment as other Linux distributions are affected as well; Ozone/Wayland is just not stable yet)
152 lines
4.7 KiB
Nix
152 lines
4.7 KiB
Nix
{ stdenv, lib, fetchurl, autoPatchelfHook, dpkg, wrapGAppsHook, nixosTests
|
|
, gnome2, gtk3, atk, at-spi2-atk, cairo, pango, gdk-pixbuf, glib, freetype, fontconfig
|
|
, dbus, libX11, xorg, libXi, libXcursor, libXdamage, libXrandr, libXcomposite
|
|
, libXext, libXfixes, libXrender, libXtst, libXScrnSaver, nss, nspr, alsa-lib
|
|
, cups, expat, libuuid, at-spi2-core, libappindicator-gtk3, mesa
|
|
# Runtime dependencies:
|
|
, systemd, libnotify, libdbusmenu, libpulseaudio
|
|
# Unfortunately this also overwrites the UI language (not just the spell
|
|
# checking language!):
|
|
, hunspellDicts, spellcheckerLanguage ? null # E.g. "de_DE"
|
|
# For a full list of available languages:
|
|
# $ cat pkgs/development/libraries/hunspell/dictionaries.nix | grep "dictFileName =" | awk '{ print $3 }'
|
|
}:
|
|
|
|
let
|
|
customLanguageWrapperArgs = (with lib;
|
|
let
|
|
# E.g. "de_DE" -> "de-de" (spellcheckerLanguage -> hunspellDict)
|
|
spellLangComponents = splitString "_" spellcheckerLanguage;
|
|
hunspellDict = elemAt spellLangComponents 0 + "-" + toLower (elemAt spellLangComponents 1);
|
|
in lib.optionalString (spellcheckerLanguage != null) ''
|
|
--set HUNSPELL_DICTIONARIES "${hunspellDicts.${hunspellDict}}/share/hunspell" \
|
|
--set LC_MESSAGES "${spellcheckerLanguage}"'');
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "signal-desktop";
|
|
version = "5.27.0"; # Please backport all updates to the stable channel.
|
|
# All releases have a limited lifetime and "expire" 90 days after the release.
|
|
# When releases "expire" the application becomes unusable until an update is
|
|
# applied. The expiration date for the current release can be extracted with:
|
|
# $ grep -a "^{\"buildExpiration" "${signal-desktop}/lib/Signal/resources/app.asar"
|
|
# (Alternatively we could try to patch the asar archive, but that requires a
|
|
# few additional steps and might not be the best idea.)
|
|
|
|
src = fetchurl {
|
|
url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb";
|
|
sha256 = "1agxn4fcgln5lsccvw5b7g2psv6nv2y7qm5df201c9pbwjak74nm";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
dpkg
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
at-spi2-atk
|
|
at-spi2-core
|
|
atk
|
|
cairo
|
|
cups
|
|
dbus
|
|
expat
|
|
fontconfig
|
|
freetype
|
|
gdk-pixbuf
|
|
glib
|
|
gnome2.GConf
|
|
gtk3
|
|
libX11
|
|
libXScrnSaver
|
|
libXcomposite
|
|
libXcursor
|
|
libXdamage
|
|
libXext
|
|
libXfixes
|
|
libXi
|
|
libXrandr
|
|
libXrender
|
|
libXtst
|
|
libappindicator-gtk3
|
|
libnotify
|
|
libuuid
|
|
mesa # for libgbm
|
|
nspr
|
|
nss
|
|
pango
|
|
systemd
|
|
xorg.libxcb
|
|
xorg.libxshmfence
|
|
];
|
|
|
|
runtimeDependencies = [
|
|
(lib.getLib systemd)
|
|
libnotify
|
|
libdbusmenu
|
|
];
|
|
|
|
unpackPhase = "dpkg-deb -x $src .";
|
|
|
|
dontBuild = true;
|
|
dontConfigure = true;
|
|
dontPatchELF = true;
|
|
# We need to run autoPatchelf manually with the "no-recurse" option, see
|
|
# https://github.com/NixOS/nixpkgs/pull/78413 for the reasons.
|
|
dontAutoPatchelf = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/lib
|
|
|
|
mv usr/share $out/share
|
|
mv opt/Signal $out/lib/Signal
|
|
|
|
# Note: The following path contains bundled libraries:
|
|
# $out/lib/Signal/resources/app.asar.unpacked/node_modules/sharp/vendor/lib/
|
|
# We run autoPatchelf with the "no-recurse" option to avoid picking those
|
|
# up, but resources/app.asar still requires them.
|
|
|
|
# Symlink to bin
|
|
mkdir -p $out/bin
|
|
ln -s $out/lib/Signal/signal-desktop $out/bin/signal-desktop
|
|
|
|
# Create required symlinks:
|
|
ln -s libGLESv2.so $out/lib/Signal/libGLESv2.so.2
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ stdenv.cc.cc ] }"
|
|
${customLanguageWrapperArgs}
|
|
)
|
|
|
|
# Fix the desktop link
|
|
substituteInPlace $out/share/applications/signal-desktop.desktop \
|
|
--replace /opt/Signal/signal-desktop $out/bin/signal-desktop
|
|
|
|
autoPatchelf --no-recurse -- $out/lib/Signal/
|
|
patchelf --add-needed ${libpulseaudio}/lib/libpulse.so $out/lib/Signal/resources/app.asar.unpacked/node_modules/ringrtc/build/linux/libringrtc-x64.node
|
|
'';
|
|
|
|
# Tests if the application launches and waits for "Link your phone to Signal Desktop":
|
|
passthru.tests.application-launch = nixosTests.signal-desktop;
|
|
|
|
meta = {
|
|
description = "Private, simple, and secure messenger";
|
|
longDescription = ''
|
|
Signal Desktop is an Electron application that links with your
|
|
"Signal Android" or "Signal iOS" app.
|
|
'';
|
|
homepage = "https://signal.org/";
|
|
changelog = "https://github.com/signalapp/Signal-Desktop/releases/tag/v${version}";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [ ixmatus primeos equirosa ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|