summary refs log tree commit diff
path: root/pkgs/applications/networking/skype/default.nix
diff options
context:
space:
mode:
authorTobias Hammerschmidt <tobias.hammerschmidt@gmx.de>2008-03-10 13:09:47 +0000
committerTobias Hammerschmidt <tobias.hammerschmidt@gmx.de>2008-03-10 13:09:47 +0000
commit8c5c656fb57a3483f5aff47c52786e0b8f9395ca (patch)
tree11ff7eae51a7c3c582c6138f72726b98c3e1c19d /pkgs/applications/networking/skype/default.nix
parent7c7639a888d5129ac202b57ff857ed5d076f0533 (diff)
downloadnixlib-8c5c656fb57a3483f5aff47c52786e0b8f9395ca.tar
nixlib-8c5c656fb57a3483f5aff47c52786e0b8f9395ca.tar.gz
nixlib-8c5c656fb57a3483f5aff47c52786e0b8f9395ca.tar.bz2
nixlib-8c5c656fb57a3483f5aff47c52786e0b8f9395ca.tar.lz
nixlib-8c5c656fb57a3483f5aff47c52786e0b8f9395ca.tar.xz
nixlib-8c5c656fb57a3483f5aff47c52786e0b8f9395ca.tar.zst
nixlib-8c5c656fb57a3483f5aff47c52786e0b8f9395ca.zip
fixed skype, wesnoth updated to version 1.4
svn path=/nixpkgs/trunk/; revision=11033
Diffstat (limited to 'pkgs/applications/networking/skype/default.nix')
-rw-r--r--pkgs/applications/networking/skype/default.nix34
1 files changed, 26 insertions, 8 deletions
diff --git a/pkgs/applications/networking/skype/default.nix b/pkgs/applications/networking/skype/default.nix
index 285cba82a3fe..25ab4f77d849 100644
--- a/pkgs/applications/networking/skype/default.nix
+++ b/pkgs/applications/networking/skype/default.nix
@@ -1,18 +1,36 @@
 args: with args;
-stdenv.mkDerivation {
+stdenv.mkDerivation ( rec {
+  pname = "skype";
+  version = "1.4.0.118";
   name = "skype-1.4";
 
   src = fetchurl {
     url = http://www.skype.com/go/getskype-linux-static;
-    sha256 = "0k71byzaipmw8lb92aad4qyh9rk0fnn3za74v1h268h09gkkd8mz";
-    name = "skype_static-1.4.0.99.tar.bz2";
+    sha256 = "1293f54811a36b2a1b83c56a4ad2844e58c753fe39b61422fac66b001d0f9e0c";
+    name = "${pname}_static-${version}.tar.bz2";
   };
 
-  buildInputs = [alsaLib glibc libSM libICE libXi libXrender libXrandr libXfixes 
-      libXcursor libXinerama freetype fontconfig libXext libX11 
-    fontconfig libXinerama libsigcxx gcc41.gcc ];
+  buildInputs = [
+    alsaLib 
+    glibc 
+    gcc.gcc
+    libSM 
+    libICE 
+    libXi 
+    libXrender 
+    libXrandr 
+    libXfixes 
+    libXcursor 
+    libXinerama 
+    freetype 
+    fontconfig 
+    libXext 
+    libX11 
+    fontconfig 
+    libsigcxx 
+  ];
 
-  phases = "installPhase";
+  phases = "unpackPhase installPhase";
   installPhase ="
 
     ensureDir \$out/{opt/skype/,bin};
@@ -41,4 +59,4 @@ done
       homepage = http://www.skype.com;
       license = "skype-eula";
   };
-}
+})