forked from mirrors/nixpkgs
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
87 lines
3.5 KiB
Nix
87 lines
3.5 KiB
Nix
{ stdenv, lib, fetchurl, xdg_utils, pkgs, pkgsi686Linux }:
|
|
|
|
let
|
|
ld32 =
|
|
if stdenv.system == "i686-linux" then "${stdenv.cc}/nix-support/dynamic-linker"
|
|
else if stdenv.system == "x86_64-linux" then "${stdenv.cc}/nix-support/dynamic-linker-m32"
|
|
else abort "Unsupported architecture";
|
|
ld64 = "${stdenv.cc}/nix-support/dynamic-linker";
|
|
|
|
mkLdPath = ps: lib.makeLibraryPath (with ps; [ qt4 dbus alsaLib ]);
|
|
|
|
deps = ps: (with ps; [ dbus zlib alsaLib fontconfig freetype libpng12 libjpeg ]) ++ (with ps.xlibs; [ libX11 libXext libXdamage libXrandr libXrender libXfixes libSM libXtst libXinerama]);
|
|
tvldpath32 = lib.makeLibraryPath (with pkgsi686Linux; [ qt4 "$out/share/teamviewer/tv_bin/wine" ] ++ deps pkgsi686Linux);
|
|
tvldpath64 = lib.makeLibraryPath (deps pkgs);
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "teamviewer-${version}";
|
|
version = "12.0.76279";
|
|
|
|
src = fetchurl {
|
|
# There is a 64-bit package, but it has no differences apart from Debian dependencies.
|
|
# Generic versioned packages (teamviewer_${version}_i386.tar.xz) are not available for some reason.
|
|
url = "http://download.teamviewer.com/download/teamviewer_${version}_i386.deb";
|
|
sha256 = "15yhx66zxbjk0x3dpfg39gb1f2ajcp9kbp4zi58bfnvby277jl00";
|
|
};
|
|
|
|
unpackPhase = ''
|
|
ar x $src
|
|
tar xf data.tar.*
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/teamviewer $out/bin $out/share/applications
|
|
cp -a opt/teamviewer/* $out/share/teamviewer
|
|
rm -R \
|
|
$out/share/teamviewer/logfiles \
|
|
$out/share/teamviewer/config \
|
|
$out/share/teamviewer/tv_bin/xdg-utils \
|
|
$out/share/teamviewer/tv_bin/script/{teamviewer_setup,teamviewerd.sysv,teamviewerd.service,teamviewerd.*.conf,libdepend,tv-delayed-start.sh}
|
|
|
|
ln -s $out/share/teamviewer/tv_bin/script/teamviewer $out/bin
|
|
ln -s $out/share/teamviewer/tv_bin/teamviewerd $out/bin
|
|
ln -s $out/share/teamviewer/tv_bin/desktop/com.teamviewer.*.desktop $out/share/applications
|
|
ln -s /var/lib/teamviewer $out/share/teamviewer/config
|
|
ln -s /var/log/teamviewer $out/share/teamviewer/logfiles
|
|
ln -s ${xdg_utils}/bin $out/share/teamviewer/tv_bin/xdg-utils
|
|
|
|
pushd $out/share/teamviewer/tv_bin
|
|
|
|
sed -i "s,TV_LD32_PATH=.*,TV_LD32_PATH=$(cat ${ld32})," script/tvw_config
|
|
${if stdenv.system == "x86_64-linux" then ''
|
|
sed -i "s,TV_LD64_PATH=.*,TV_LD64_PATH=$(cat ${ld64})," script/tvw_config
|
|
'' else ''
|
|
sed -i "/TV_LD64_PATH=.*/d" script/tvw_config
|
|
''}
|
|
|
|
sed -i "s,/opt/teamviewer,$out/share/teamviewer,g" desktop/com.teamviewer.*.desktop
|
|
|
|
for i in teamviewer-config teamviewerd TeamViewer_Desktop TVGuiDelegate TVGuiSlave.32 wine/bin/* RTlib/libQtCore.so.4; do
|
|
echo "patching $i"
|
|
patchelf --set-interpreter $(cat ${ld32}) --set-rpath $out/share/teamviewer/tv_bin/RTlib:${tvldpath32} $i || true
|
|
done
|
|
for i in resources/*.so wine/drive_c/TeamViewer/tvwine.dll.so wine/lib/*.so* wine/lib/wine/*.so RTlib/*.so* ; do
|
|
echo "patching $i"
|
|
patchelf --set-rpath $out/share/teamviewer/tv_bin/RTlib:${tvldpath32} $i || true
|
|
done
|
|
${if stdenv.system == "x86_64-linux" then ''
|
|
patchelf --set-interpreter $(cat ${ld64}) --set-rpath ${tvldpath64} TVGuiSlave.64
|
|
'' else ''
|
|
rm TVGuiSlave.64
|
|
''}
|
|
popd
|
|
'';
|
|
|
|
dontPatchELF = true;
|
|
dontStrip = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.teamviewer.com;
|
|
license = licenses.unfree;
|
|
description = "Desktop sharing application, providing remote support and online meetings";
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
maintainers = with maintainers; [ jagajaga dasuxullebt ];
|
|
};
|
|
}
|