mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 00:12:39 +03:00
viber: add pkg
This commit is contained in:
parent
e07ea5cf77
commit
b57c9866c5
@ -0,0 +1,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 ];
|
||||
};
|
||||
|
||||
}
|
@ -11492,6 +11492,8 @@ let
|
||||
|
||||
ssvnc = callPackage ../applications/networking/remote/ssvnc { };
|
||||
|
||||
viber = callPackage ../applications/networking/instant-messengers/viber { };
|
||||
|
||||
st = callPackage ../applications/misc/st {
|
||||
conf = config.st.conf or null;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user