nixpkgs/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix

112 lines
2.7 KiB
Nix
Raw Normal View History

2019-01-03 23:04:58 +03:00
{ stdenv, fetchurl, dpkg, makeDesktopItem, libuuid, gtk3, atk, cairo, pango
, gdk_pixbuf, glib, freetype, fontconfig, dbus, libnotify, libX11, xorg, libXi
, libXcursor, libXdamage, libXrandr, libXcomposite, libXext, libXfixes
, libXrender, libXtst, libXScrnSaver, nss, nspr, alsaLib, cups, expat, udev
, xdg_utils, hunspell, pulseaudio, pciutils, at-spi2-atk
2018-04-11 21:46:23 +03:00
}:
let
rpath = stdenv.lib.makeLibraryPath [
2018-04-11 21:46:23 +03:00
alsaLib
atk
cairo
cups
dbus
expat
fontconfig
freetype
gdk_pixbuf
glib
2019-01-03 23:04:58 +03:00
gtk3
at-spi2-atk
2018-04-11 21:46:23 +03:00
hunspell
2019-01-03 23:04:58 +03:00
libuuid
2018-04-11 21:46:23 +03:00
libnotify
libX11
libXcomposite
libXcursor
libXdamage
libXext
libXfixes
libXi
libXrandr
libXrender
libXScrnSaver
libXtst
nspr
nss
pango
pciutils
pulseaudio
2018-04-11 21:46:23 +03:00
stdenv.cc.cc
udev
xdg_utils
xorg.libxcb
];
2019-02-22 03:36:18 +03:00
version = "3.6.2885";
2018-04-11 21:46:23 +03:00
plat = {
"i686-linux" = "i386";
"x86_64-linux" = "amd64";
}.${stdenv.hostPlatform.system};
2018-04-11 21:46:23 +03:00
sha256 = {
2019-02-22 03:36:18 +03:00
"i686-linux" = "1lj2gjv69z94dj7b4zjhls420fs5zzxkdlwv25p2gp4lkv0v6l98";
"x86_64-linux" = "1dl88fpy8v3aprzdp1nnwg08sy7yiljqjnpnl3rw0h5nix6xmv9v";
}.${stdenv.hostPlatform.system};
2018-04-11 21:46:23 +03:00
in
stdenv.mkDerivation rec {
name = "wire-desktop-${version}";
src = fetchurl {
2019-02-22 03:36:18 +03:00
url = "https://wire-app.wire.com/linux/debian/pool/main/Wire-${version}_${plat}.deb";
2018-04-11 21:46:23 +03:00
inherit sha256;
};
desktopItem = makeDesktopItem {
2018-04-30 03:32:41 +03:00
name = "wire-desktop";
2018-04-11 21:46:23 +03:00
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;
2018-04-11 21:46:23 +03:00
nativeBuildInputs = [ dpkg ];
unpackPhase = "dpkg-deb -x $src .";
installPhase = ''
mkdir -p "$out"
cp -R "opt" "$out"
cp -R "usr/share" "$out/share"
2018-04-11 21:46:23 +03:00
chmod -R g-w "$out"
2018-04-11 21:46:23 +03:00
# Patch wire-desktop
2018-04-11 21:46:23 +03:00
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${rpath}:$out/opt/Wire" \
"$out/opt/Wire/wire-desktop"
2018-04-11 21:46:23 +03:00
# Symlink to bin
mkdir -p "$out/bin"
ln -s "$out/opt/Wire/wire-desktop" "$out/bin/wire-desktop"
2018-04-11 21:46:23 +03:00
# Desktop file
mkdir -p "$out/share/applications"
cp "${desktopItem}/share/applications/"* "$out/share/applications"
2018-04-11 21:46:23 +03:00
'';
2018-07-10 01:34:32 +03:00
meta = with stdenv.lib; {
2018-04-11 21:46:23 +03:00
description = "A modern, secure messenger";
2019-02-22 03:36:18 +03:00
homepage = https://wire.com/;
license = licenses.gpl3;
maintainers = with maintainers; [ worldofpeace ];
2019-02-22 03:36:18 +03:00
platforms = [ "i686-linux" "x86_64-linux" ];
2018-04-11 21:46:23 +03:00
};
}