3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix

135 lines
3.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, makeDesktopItem
, alsaLib, at-spi2-atk, atk, cairo, cups, dbus, dpkg, expat, fontconfig
2019-07-28 22:29:11 +01:00
, freetype, gdk-pixbuf, glib, gtk3, hunspell, libX11, libXScrnSaver
, libXcomposite, libXcursor, libXdamage, libXext, libXfixes, libXi, libXrandr
, libXrender, libXtst, libnotify, libuuid, nspr, nss, pango, pciutils
, pulseaudio, udev, xdg_utils, xorg
, cpio, xar
2018-04-11 19:46:23 +01:00
}:
2018-04-11 19:46:23 +01:00
let
inherit (stdenv.hostPlatform) system;
2018-04-11 19:46:23 +01:00
2019-08-04 10:08:33 +01:00
throwSystem = throw "Unsupported system: ${system}";
pname = "wire-desktop";
version = {
2019-09-09 00:38:31 +01:00
x86_64-linux = "3.10.2904";
x86_64-darwin = "3.10.3215";
2019-08-04 10:08:33 +01:00
}.${system} or throwSystem;
2018-04-11 19:46:23 +01:00
sha256 = {
2019-09-09 00:38:31 +01:00
x86_64-linux = "1vrz4568mlhylx17jw4z452f0vrd8yd8qkbpkcvnsbhs6k066xcn";
x86_64-darwin = "0ygm3fgy9k1dp2kjfwsrrwq1i88wgxc6k8y80yz61ivdawgph9wa";
2019-08-04 10:08:33 +01:00
}.${system} or throwSystem;
2018-07-09 23:34:32 +01:00
meta = with stdenv.lib; {
description = "A modern, secure messenger for everyone";
longDescription = ''
Wire Personal is a secure, privacy-friendly messenger. It combines useful
and fun features, audited security, and a beautiful, distinct user
interface. It does not require a phone number to register and chat.
* End-to-end encrypted chats, calls, and files
* Crystal clear voice and video calling
* File and screen sharing
* Timed messages and chats
* Synced across your phone, desktop and tablet
'';
homepage = https://wire.com/;
downloadPage = https://wire.com/download/;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ toonn worldofpeace ];
platforms = [ "x86_64-darwin" "x86_64-linux" ];
};
2018-04-11 19:46:23 +01:00
linux = stdenv.mkDerivation rec {
inherit pname version meta;
src = fetchurl {
url = "https://wire-app.wire.com/linux/debian/pool/main/"
+ "Wire-${version}_amd64.deb";
inherit sha256;
};
desktopItem = makeDesktopItem {
name = "wire-desktop";
exec = "wire-desktop %U";
icon = "wire-desktop";
comment = "Secure messenger for everyone";
desktopName = "Wire Desktop";
genericName = "Secure messenger";
categories = "Network;InstantMessaging;Chat;VideoConference";
};
dontBuild = true;
dontPatchELF = true;
dontConfigure = true;
nativeBuildInputs = [ dpkg ];
rpath = stdenv.lib.makeLibraryPath [
alsaLib at-spi2-atk atk cairo cups dbus expat fontconfig freetype
2019-07-28 22:29:11 +01:00
gdk-pixbuf glib gtk3 hunspell libX11 libXScrnSaver libXcomposite
libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender
libXtst libnotify libuuid nspr nss pango pciutils pulseaudio
stdenv.cc.cc udev xdg_utils xorg.libxcb
];
unpackPhase = "dpkg-deb -x $src .";
installPhase = ''
mkdir -p "$out"
cp -R "opt" "$out"
cp -R "usr/share" "$out/share"
chmod -R g-w "$out"
# Patch wire-desktop
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${rpath}:$out/opt/Wire" \
"$out/opt/Wire/wire-desktop"
# Symlink to bin
mkdir -p "$out/bin"
ln -s "$out/opt/Wire/wire-desktop" "$out/bin/wire-desktop"
# Desktop file
mkdir -p "$out/share/applications"
cp "${desktopItem}/share/applications/"* "$out/share/applications"
'';
};
2018-04-11 19:46:23 +01:00
2019-08-13 22:52:01 +01:00
darwin = stdenv.mkDerivation {
inherit pname version meta;
src = fetchurl {
url = "https://github.com/wireapp/wire-desktop/releases/download/"
+ "macos%2F${version}/Wire.pkg";
inherit sha256;
};
2018-04-11 19:46:23 +01:00
buildInputs = [ cpio xar ];
2018-04-11 19:46:23 +01:00
unpackPhase = ''
xar -xf $src
cd com.wearezeta.zclient.mac.pkg
'';
2018-04-11 19:46:23 +01:00
buildPhase = ''
cat Payload | gunzip -dc | cpio -i
'';
2018-07-09 23:34:32 +01:00
installPhase = ''
mkdir -p $out/Applications
cp -r Wire.app $out/Applications
'';
};
in if stdenv.isDarwin
then darwin
else linux