mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #14246 from abbradar/skype-workaround
skype: use clang-built qt4 to fix segfault
This commit is contained in:
commit
e4c33a688d
2 changed files with 8 additions and 1 deletions
|
@ -13548,7 +13548,13 @@ in
|
|||
|
||||
siproxd = callPackage ../applications/networking/siproxd { };
|
||||
|
||||
skype = callPackage_i686 ../applications/networking/instant-messengers/skype { };
|
||||
# Needed for skype
|
||||
qt4-clang = qt4.override {
|
||||
stdenv = clangStdenv;
|
||||
};
|
||||
skype = callPackage_i686 ../applications/networking/instant-messengers/skype {
|
||||
qt4 = pkgsi686Linux.qt4-clang;
|
||||
};
|
||||
|
||||
skype4pidgin = callPackage ../applications/networking/instant-messengers/pidgin-plugins/skype4pidgin { };
|
||||
|
||||
|
|
|
@ -184,6 +184,7 @@ let
|
|||
pythonFull = linux;
|
||||
sbcl = linux;
|
||||
qt3 = linux;
|
||||
qt4-clang = [ "i686-linux" ];
|
||||
quake3demo = linux;
|
||||
reiserfsprogs = linux;
|
||||
rubber = allBut cygwin;
|
||||
|
|
Loading…
Reference in a new issue