summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/viber/default.nix
blob: d268cbc55cfbb60cc0213b407e2c2ed8de78b5f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{ fetchurl, stdenv, dpkg, makeWrapper, xlibs, qt5, gstreamer, zlib, sqlite, libxslt }:

assert stdenv.system == "x86_64-linux";

# BUG: viber tries to access contacts list and that causes segfault
# FIX: you have to do `chmod 444 ~/.ViberPC/<your mobile phone number>/Avatars`
# BUG: viber tries to it's downloads and that causes segfault
# FIX: you have to do `chmod 444 ~/Documents/ViberDownloads`
# TODO: fix bugs

stdenv.mkDerivation rec {
  name = "viber-${version}";
  version = "4.2.2.6";

  src = fetchurl {
    url = "http://download.cdn.viber.com/cdn/desktop/Linux/viber.deb";
    sha256 = "1fv269z9sni21lc1ka25jnxr9w8zfg1gfn2c7fnd8cdd5fm57d26";
  };

  buildInputs = [ dpkg makeWrapper ];

  unpackPhase = "true";

  libPath = stdenv.lib.makeLibraryPath [
      qt5
      xlibs.libX11
      gstreamer
      zlib
      sqlite
      xlibs.libXrender
      libxslt
      stdenv.cc.cc
      xlibs.libXScrnSaver
      xlibs.libXext
  ];

  installPhase = ''
    dpkg-deb -x $src $out
    mkdir -p $out/bin
    mv $out/opt/viber/{Sound,icons,libqfacebook.so} $out
    mv $out/opt/viber/Viber $out/viber
    rm -rf $out/opt
    ln -s $out/viber $out/bin/viber
    mkdir -p usr/lib/mozilla/plugins

    patchelf \
      --set-rpath $libPath \
      $out/libqfacebook.so
    patchelf \
      --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
      --set-rpath $libPath:$out \
      $out/viber

    wrapProgram $out/viber --prefix LD_LIBRARY_PATH : $libPath:$out
  '';

  dontStrip = true;
  dontPatchELF = true;

  meta = {
    homepage = http://www.viber.com;
    description = "An instant messaging and Voice over IP (VoIP) app";
    license = stdenv.lib.licenses.unfree;
    platforms = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ jagajaga ];
  };

}