summary refs log tree commit diff
path: root/pkgs/applications/audio/spotify
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2011-10-21 02:26:26 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2011-10-21 02:26:26 +0000
commit572b54cb9cffc76ae520cce41412ec35c7fd67b1 (patch)
tree2a05559ce30420f02af6a9c5ed285194a12a71fb /pkgs/applications/audio/spotify
parent6ddae753dcab1d30d31126c96ab6e13d3f07607f (diff)
downloadnixpkgs-572b54cb9cffc76ae520cce41412ec35c7fd67b1.tar
nixpkgs-572b54cb9cffc76ae520cce41412ec35c7fd67b1.tar.gz
nixpkgs-572b54cb9cffc76ae520cce41412ec35c7fd67b1.tar.bz2
nixpkgs-572b54cb9cffc76ae520cce41412ec35c7fd67b1.tar.lz
nixpkgs-572b54cb9cffc76ae520cce41412ec35c7fd67b1.tar.xz
nixpkgs-572b54cb9cffc76ae520cce41412ec35c7fd67b1.tar.zst
nixpkgs-572b54cb9cffc76ae520cce41412ec35c7fd67b1.zip
* Spotify updated to the latest version.
svn path=/nixpkgs/trunk/; revision=29953
Diffstat (limited to 'pkgs/applications/audio/spotify')
-rw-r--r--pkgs/applications/audio/spotify/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix
index 3a15d32aa7f..38eb51b93db 100644
--- a/pkgs/applications/audio/spotify/default.nix
+++ b/pkgs/applications/audio/spotify/default.nix
@@ -2,7 +2,7 @@
 
 assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux";
 
-let version = "0.6.1.309"; in
+let version = "0.6.2.291"; in
 
 stdenv.mkDerivation {
   name = "spotify-${version}";
@@ -10,13 +10,13 @@ stdenv.mkDerivation {
   src =
     if stdenv.system == "i686-linux" then 
       fetchurl {
-        url = "http://repository.spotify.com/pool/non-free/s/spotify/spotify-client-qt_${version}.gb871a7d-1_i386.deb";
-        sha256 = "01bavmv78vd3lxsinbls72v2sj8czbcwzdg6sc2f9yd5g7snb3im";
+        url = "http://repository.spotify.com/pool/non-free/s/spotify/spotify-client-qt_${version}.gcccc1f5.116-1_i386.deb";
+        sha256 = "164ka9xry9nbnv77w71kzi7bjidlmccw8wnn4fyzavi8pbrpmj08";
       }
     else if stdenv.system == "x86_64-linux" then 
       fetchurl {
-        url = "http://repository.spotify.com/pool/non-free/s/spotify/spotify-client-qt_${version}.gb871a7d-1_amd64.deb";
-        sha256 = "13ki1pcpna7f5sxf1j2axww95c4kqhj0r1d11y98mfvzxxjqimjs";
+        url = "http://repository.spotify.com/pool/non-free/s/spotify/spotify-client-qt_${version}.gcccc1f5.116-1_amd64.deb";
+        sha256 = "08snnpqd5ldiqv98pwx3fjrhdlwp4arbgda9xnsy92wfk0s85lv8";
       }
     else throw "Spotify not supported on this platform.";