Merge pull request #31466 from jraygauthier/jrg/skypeforlinux_was_broken_update_to_latest
skypeforlinux: 5.5.0.1 -> 8.11.0.4
This commit is contained in:
commit
6158563b45
|
@ -1,10 +1,10 @@
|
||||||
{ stdenv, fetchurl, dpkg, makeWrapper
|
{ stdenv, fetchurl, dpkg, makeWrapper
|
||||||
, alsaLib, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, glib, glibc, gnome2, libsecret
|
, alsaLib, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, glib, glibc, gnome2
|
||||||
, libnotify, nspr, nss, systemd, xorg, libv4l, libstdcxx5 }:
|
, libnotify, libpulseaudio, libsecret, libstdcxx5, libv4l, nspr, nss, systemd, xorg }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
version = "5.5.0.1";
|
version = "8.11.0.4";
|
||||||
|
|
||||||
rpath = stdenv.lib.makeLibraryPath [
|
rpath = stdenv.lib.makeLibraryPath [
|
||||||
alsaLib
|
alsaLib
|
||||||
|
@ -17,9 +17,8 @@ let
|
||||||
fontconfig
|
fontconfig
|
||||||
freetype
|
freetype
|
||||||
glib
|
glib
|
||||||
libsecret
|
|
||||||
glibc
|
glibc
|
||||||
libstdcxx5
|
libsecret
|
||||||
|
|
||||||
gnome2.GConf
|
gnome2.GConf
|
||||||
gnome2.gdk_pixbuf
|
gnome2.gdk_pixbuf
|
||||||
|
@ -29,10 +28,12 @@ let
|
||||||
gnome2.gnome_keyring
|
gnome2.gnome_keyring
|
||||||
|
|
||||||
libnotify
|
libnotify
|
||||||
|
libpulseaudio
|
||||||
nspr
|
nspr
|
||||||
nss
|
nss
|
||||||
stdenv.cc.cc
|
stdenv.cc.cc
|
||||||
systemd
|
systemd
|
||||||
|
libstdcxx5
|
||||||
libv4l
|
libv4l
|
||||||
|
|
||||||
xorg.libxkbfile
|
xorg.libxkbfile
|
||||||
|
@ -54,7 +55,7 @@ let
|
||||||
if stdenv.system == "x86_64-linux" then
|
if stdenv.system == "x86_64-linux" then
|
||||||
fetchurl {
|
fetchurl {
|
||||||
url = "https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb";
|
url = "https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb";
|
||||||
sha256 = "1r65qlsjwp0n0fmlhvbp71h03b3x73r26jk9f4q687sjqnzmkvcr";
|
sha256 = "1dq7k4zlqqsx7786phialia5xbpc3cp1wrjhqrvga09yg4dl505c";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
throw "Skype for linux is not supported on ${stdenv.system}";
|
throw "Skype for linux is not supported on ${stdenv.system}";
|
||||||
|
@ -92,15 +93,13 @@ in stdenv.mkDerivation {
|
||||||
substituteInPlace $out/share/applications/skypeforlinux.desktop \
|
substituteInPlace $out/share/applications/skypeforlinux.desktop \
|
||||||
--replace /usr/bin/ $out/bin/ \
|
--replace /usr/bin/ $out/bin/ \
|
||||||
--replace /usr/share/ $out/share/
|
--replace /usr/share/ $out/share/
|
||||||
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Linux client for skype";
|
description = "Linux client for skype";
|
||||||
homepage = https://www.skype.com;
|
homepage = https://www.skype.com;
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
maintainers = with stdenv.lib.maintainers; [ panaeon ];
|
maintainers = with stdenv.lib.maintainers; [ panaeon jraygauthier ];
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue