2018-08-07 14:36:26 +01:00
|
|
|
{ stdenv, fetchurl, dpkg
|
2019-05-22 12:03:39 +01:00
|
|
|
, alsaLib, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, gdk-pixbuf, glib, glibc, gnome2, gnome3
|
2020-03-18 07:09:40 +00:00
|
|
|
, gtk3, libappindicator-gtk3, libnotify, libpulseaudio, libsecret, libv4l, nspr, nss, pango, systemd, wrapGAppsHook, xorg
|
2019-08-22 22:16:00 +01:00
|
|
|
, at-spi2-atk, libuuid, at-spi2-core }:
|
2017-04-23 16:22:59 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2017-12-14 21:36:52 +00:00
|
|
|
# Please keep the version x.y.0.z and do not update to x.y.76.z because the
|
|
|
|
# source of the latter disappears much faster.
|
2020-11-06 15:08:11 +00:00
|
|
|
version = "8.66.0.74";
|
2017-04-23 16:22:59 +01:00
|
|
|
|
|
|
|
rpath = stdenv.lib.makeLibraryPath [
|
|
|
|
alsaLib
|
|
|
|
atk
|
2019-04-03 05:42:11 +01:00
|
|
|
at-spi2-atk
|
2019-08-22 22:16:00 +01:00
|
|
|
at-spi2-core
|
2017-04-23 16:22:59 +01:00
|
|
|
cairo
|
|
|
|
cups
|
|
|
|
curl
|
|
|
|
dbus
|
|
|
|
expat
|
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
glib
|
2017-09-08 17:05:44 +01:00
|
|
|
glibc
|
2017-11-10 04:12:57 +00:00
|
|
|
libsecret
|
2019-08-22 22:16:00 +01:00
|
|
|
libuuid
|
2017-04-23 16:22:59 +01:00
|
|
|
|
2018-07-09 23:34:32 +01:00
|
|
|
gnome2.GConf
|
2019-05-22 12:03:39 +01:00
|
|
|
gdk-pixbuf
|
2018-06-20 17:15:44 +01:00
|
|
|
gtk3
|
2020-03-18 07:09:40 +00:00
|
|
|
libappindicator-gtk3
|
2017-04-23 16:22:59 +01:00
|
|
|
|
2018-05-29 20:54:42 +01:00
|
|
|
gnome3.gnome-keyring
|
2017-06-03 18:52:20 +01:00
|
|
|
|
2017-04-23 16:22:59 +01:00
|
|
|
libnotify
|
2017-11-10 04:12:57 +00:00
|
|
|
libpulseaudio
|
2017-04-23 16:22:59 +01:00
|
|
|
nspr
|
|
|
|
nss
|
2018-05-29 20:54:42 +01:00
|
|
|
pango
|
2017-04-23 16:22:59 +01:00
|
|
|
stdenv.cc.cc
|
|
|
|
systemd
|
2017-09-08 17:05:44 +01:00
|
|
|
libv4l
|
2017-04-23 16:22:59 +01:00
|
|
|
|
|
|
|
xorg.libxkbfile
|
|
|
|
xorg.libX11
|
|
|
|
xorg.libXcomposite
|
|
|
|
xorg.libXcursor
|
|
|
|
xorg.libXdamage
|
|
|
|
xorg.libXext
|
|
|
|
xorg.libXfixes
|
|
|
|
xorg.libXi
|
|
|
|
xorg.libXrandr
|
|
|
|
xorg.libXrender
|
|
|
|
xorg.libXtst
|
|
|
|
xorg.libXScrnSaver
|
|
|
|
xorg.libxcb
|
|
|
|
] + ":${stdenv.cc.cc.lib}/lib64";
|
|
|
|
|
|
|
|
src =
|
2018-08-20 20:11:29 +01:00
|
|
|
if stdenv.hostPlatform.system == "x86_64-linux" then
|
2017-04-23 16:22:59 +01:00
|
|
|
fetchurl {
|
2019-11-19 16:25:31 +00:00
|
|
|
urls = [
|
|
|
|
"https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb"
|
2020-04-28 21:48:35 +01:00
|
|
|
"https://mirror.cs.uchicago.edu/skype/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb"
|
2019-11-19 16:25:31 +00:00
|
|
|
"https://web.archive.org/web/https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb"
|
|
|
|
];
|
2020-11-06 15:08:11 +00:00
|
|
|
sha256 = "11bpzr3j6fa5x62xrx2q2sr1wxjrn0a37053j4prxjcvdrc5in8f";
|
2017-04-23 16:22:59 +01:00
|
|
|
}
|
|
|
|
else
|
2018-08-20 20:11:29 +01:00
|
|
|
throw "Skype for linux is not supported on ${stdenv.hostPlatform.system}";
|
2017-04-23 16:22:59 +01:00
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "skypeforlinux";
|
|
|
|
inherit version;
|
2017-04-23 16:22:59 +01:00
|
|
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
|
|
|
inherit src;
|
|
|
|
|
2018-08-07 14:36:26 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
wrapGAppsHook
|
|
|
|
glib # For setup hook populating GSETTINGS_SCHEMA_PATH
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ dpkg ];
|
2017-04-23 16:22:59 +01:00
|
|
|
|
2019-06-19 16:45:34 +01:00
|
|
|
dontUnpack = true;
|
2017-04-23 16:22:59 +01:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
dpkg -x $src $out
|
|
|
|
cp -av $out/usr/* $out
|
|
|
|
rm -rf $out/opt $out/usr
|
|
|
|
rm $out/bin/skypeforlinux
|
|
|
|
|
2018-08-19 14:06:43 +01:00
|
|
|
ln -s "$out/share/skypeforlinux/skypeforlinux" "$out/bin/skypeforlinux"
|
|
|
|
|
2017-04-23 16:22:59 +01:00
|
|
|
# Otherwise it looks "suspicious"
|
|
|
|
chmod -R g-w $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = ''
|
2017-09-08 17:05:44 +01:00
|
|
|
for file in $(find $out -type f \( -perm /0111 -o -name \*.so\* -or -name \*.node\* \) ); do
|
2017-11-10 04:12:57 +00:00
|
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$file" || true
|
|
|
|
patchelf --set-rpath ${rpath}:$out/share/skypeforlinux $file || true
|
2017-09-08 17:05:44 +01:00
|
|
|
done
|
2017-04-23 16:22:59 +01:00
|
|
|
|
|
|
|
# Fix the desktop link
|
|
|
|
substituteInPlace $out/share/applications/skypeforlinux.desktop \
|
2019-05-03 11:58:41 +01:00
|
|
|
--replace /usr/bin/ $out/bin/
|
2017-04-23 16:22:59 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Linux client for skype";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.skype.com";
|
2017-04-23 16:22:59 +01:00
|
|
|
license = licenses.unfree;
|
2017-11-10 04:12:57 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ panaeon jraygauthier ];
|
2017-04-23 16:22:59 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|