111 lines
3.1 KiB
Nix
111 lines
3.1 KiB
Nix
{ stdenv, lib, fetchurl, dpkg, wrapGAppsHook
|
|
, gnome2, gtk3, atk, cairo, pango, gdk_pixbuf, glib, freetype, fontconfig
|
|
, dbus, libX11, xorg, libXi, libXcursor, libXdamage, libXrandr, libXcomposite
|
|
, libXext, libXfixes, libXrender, libXtst, libXScrnSaver, nss, nspr, alsaLib
|
|
, cups, expat, udev, libnotify
|
|
# 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 if spellcheckerLanguage != null
|
|
then ''
|
|
--set HUNSPELL_DICTIONARIES "${hunspellDicts.${hunspellDict}}/share/hunspell" \
|
|
--set LC_MESSAGES "${spellcheckerLanguage}"''
|
|
else "");
|
|
rpath = lib.makeLibraryPath [
|
|
alsaLib
|
|
atk
|
|
cairo
|
|
cups
|
|
dbus
|
|
expat
|
|
fontconfig
|
|
freetype
|
|
gdk_pixbuf
|
|
glib
|
|
gnome2.GConf
|
|
gtk3
|
|
pango
|
|
libnotify
|
|
libX11
|
|
libXScrnSaver
|
|
libXcomposite
|
|
libXcursor
|
|
libXdamage
|
|
libXext
|
|
libXfixes
|
|
libXi
|
|
libXrandr
|
|
libXrender
|
|
libXtst
|
|
nspr
|
|
nss
|
|
stdenv.cc.cc
|
|
udev
|
|
xorg.libxcb
|
|
];
|
|
|
|
in stdenv.mkDerivation rec {
|
|
name = "signal-desktop-${version}";
|
|
version = "1.16.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb";
|
|
sha256 = "1j1785sc8pmrhi8yhlv4brxn7zrd33skgkkvzfl60nqkh2nybh3y";
|
|
};
|
|
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
nativeBuildInputs = [ dpkg wrapGAppsHook ];
|
|
|
|
unpackPhase = "dpkg-deb -x $src .";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -R opt $out
|
|
|
|
mv ./usr/share $out/share
|
|
mv $out/opt/Signal $out/libexec
|
|
rmdir $out/opt
|
|
|
|
chmod -R g-w $out
|
|
|
|
# Patch signal
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath ${rpath}:$out/libexec $out/libexec/signal-desktop
|
|
wrapProgram $out/libexec/signal-desktop \
|
|
--prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}/" \
|
|
${customLanguageWrapperArgs} \
|
|
"''${gappsWrapperArgs[@]}"
|
|
|
|
# Symlink to bin
|
|
mkdir -p $out/bin
|
|
ln -s $out/libexec/signal-desktop $out/bin/signal-desktop
|
|
|
|
# Fix the desktop link
|
|
substituteInPlace $out/share/applications/signal-desktop.desktop \
|
|
--replace /opt/Signal/signal-desktop $out/bin/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/;
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [ ixmatus primeos ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|