skype4pidgin: remove

It hasn't worked for years, since the old skype for linux was retired.

+1 -43
-41
pkgs/applications/networking/instant-messengers/pidgin-plugins/skype4pidgin/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, pidgin, libnotify, gdk-pixbuf, glib, dbus 2 - , dbus-glib }: 3 - 4 - stdenv.mkDerivation rec { 5 - name = "skype4pidgin-novas0x2a-20120411-6c53f7c48f"; 6 - src = fetchurl { 7 - url = "https://github.com/novas0x2a/skype4pidgin/tarball/6c53f7c48f"; 8 - name = "${name}.tar.gz"; 9 - sha256 = "116jfh5ravaixivqx4a4bz0lbb9c49d5r83nwmripja56zdbpgr0"; 10 - }; 11 - 12 - NIX_CFLAGS_COMPILE = "-I${libnotify}/include/libnotify"; 13 - 14 - patchPhase = '' 15 - sed -i -e 's/ [^ ]*-gcc/ gcc/' -e 's/-march[^ ]*//' \ 16 - -e 's/GLIB_CFLAGS =.*/GLIB_CFLAGS=`pkg-config --cflags glib-2.0 gdk-pixbuf-2.0 libnotify purple dbus-glib-1`/' Makefile 17 - pkg-config --cflags glib-2.0 gdk-pixbuf-2.0 libnotify 18 - ''; 19 - 20 - buildPhase = "make libskype.so libskype_dbus.so"; 21 - 22 - installPhase = '' 23 - mkdir -p $out/pixmaps/pidgin/protocols/{16,22,48} $out/bin $out/lib/pidgin 24 - cp icons/16/skypeout.png $out/pixmaps/pidgin/protocols/16 25 - cp icons/22/skypeout.png $out/pixmaps/pidgin/protocols/22 26 - cp icons/48/skypeout.png $out/pixmaps/pidgin/protocols/48 27 - cp libskype.so libskype_dbus.so $out/lib/pidgin 28 - ''; 29 - 30 - postInstall = "ln -s \$out/lib/pidgin \$out/share/pidgin-otr"; 31 - 32 - nativeBuildInputs = [ pkg-config ]; 33 - buildInputs = [ pidgin libnotify gdk-pixbuf glib dbus dbus-glib ]; 34 - 35 - meta = { 36 - homepage = "https://github.com/novas0x2a/skype4pidgin"; 37 - license = lib.licenses.gpl3Plus; 38 - description = "Plugin to use a running skype account through pidgin"; 39 - platforms = lib.platforms.linux; 40 - }; 41 - }
···
+1
pkgs/top-level/aliases.nix
··· 754 sky = throw "sky has been removed from nixpkgs (2020-09-16)"; 755 skype = skypeforlinux; # added 2017-07-27 756 skype_call_recorder = throw "skype_call_recorder has been removed from nixpkgs, because it stopped working when classic Skype was retired."; # added 2020-10-31 757 skydive = throw "skydive has been removed from nixpkgs (2019-09-10)"; 758 slack-dark = slack; # added 2020-03-27 759 slic3r-prusa3d = prusa-slicer; # added 2019-05-21
··· 754 sky = throw "sky has been removed from nixpkgs (2020-09-16)"; 755 skype = skypeforlinux; # added 2017-07-27 756 skype_call_recorder = throw "skype_call_recorder has been removed from nixpkgs, because it stopped working when classic Skype was retired."; # added 2020-10-31 757 + skype4pidgin = throw "skype4pidgin has been remove from nixpkgs, because it stopped working when classic Skype was retired."; # added 2021-07-14 758 skydive = throw "skydive has been removed from nixpkgs (2019-09-10)"; 759 slack-dark = slack; # added 2020-03-27 760 slic3r-prusa3d = prusa-slicer; # added 2019-05-21
-2
pkgs/top-level/all-packages.nix
··· 26821 26822 skypeforlinux = callPackage ../applications/networking/instant-messengers/skypeforlinux { }; 26823 26824 - skype4pidgin = callPackage ../applications/networking/instant-messengers/pidgin-plugins/skype4pidgin { }; 26825 - 26826 SkypeExport = callPackage ../applications/networking/instant-messengers/SkypeExport { }; 26827 26828 slmenu = callPackage ../applications/misc/slmenu {};
··· 26821 26822 skypeforlinux = callPackage ../applications/networking/instant-messengers/skypeforlinux { }; 26823 26824 SkypeExport = callPackage ../applications/networking/instant-messengers/SkypeExport { }; 26825 26826 slmenu = callPackage ../applications/misc/slmenu {};