about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/skype
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-03-27 11:56:28 +0300
committerNikolay Amiantov <ab@fmap.me>2016-03-27 11:57:46 +0300
commit3819384395ec1a6490303c09c645d1d4e96265eb (patch)
tree574b519b031d0af09cb9346d010abac841117c55 /pkgs/applications/networking/instant-messengers/skype
parent235a0d5bdcfedaf222ed0613b2be42172a791ee4 (diff)
skype: small cleanup
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/skype')
-rw-r--r--pkgs/applications/networking/instant-messengers/skype/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/networking/instant-messengers/skype/default.nix b/pkgs/applications/networking/instant-messengers/skype/default.nix
index 1e84e015bc14b..98672a29d0b63 100644
--- a/pkgs/applications/networking/instant-messengers/skype/default.nix
+++ b/pkgs/applications/networking/instant-messengers/skype/default.nix
@@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
     cat > $out/bin/skype << EOF
     #!${stdenv.shell}
     export PULSE_LATENCY_MSEC=60  # workaround for pulseaudio glitches
-    $out/libexec/skype/skype --resources=$out/libexec/skype "\$@"
+    exec $out/libexec/skype/skype --resources=$out/libexec/skype "\$@"
     EOF
 
     chmod +x $out/bin/skype
@@ -67,5 +67,6 @@ stdenv.mkDerivation rec {
     description = "A proprietary voice-over-IP (VoIP) client";
     homepage = http://www.skype.com/;
     license = stdenv.lib.licenses.unfree;
+    platforms = [ "i686-linux" ];
   };
 }