summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2014-08-04 07:47:52 -0500
committerVladimír Čunát <vcunat@gmail.com>2014-08-14 20:35:40 +0200
commitd3cdf160791ac7f47323335aa0d9fec1c241b961 (patch)
treec0565e46f6afe8df249c0bf7a0899804bd38596e /pkgs/applications
parent56f3bf46390e288c0bb00a993b61f44fce6397ba (diff)
downloadnixpkgs-d3cdf160791ac7f47323335aa0d9fec1c241b961.tar
nixpkgs-d3cdf160791ac7f47323335aa0d9fec1c241b961.tar.gz
nixpkgs-d3cdf160791ac7f47323335aa0d9fec1c241b961.tar.bz2
nixpkgs-d3cdf160791ac7f47323335aa0d9fec1c241b961.tar.lz
nixpkgs-d3cdf160791ac7f47323335aa0d9fec1c241b961.tar.xz
nixpkgs-d3cdf160791ac7f47323335aa0d9fec1c241b961.tar.zst
nixpkgs-d3cdf160791ac7f47323335aa0d9fec1c241b961.zip
clementine: version bump 1.2.1 -> 1.2.3 (close #3570)
@vcunat: fix hydraPlatforms type (list nestedness), enableParallelBuilding.
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/clementine/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/applications/audio/clementine/default.nix b/pkgs/applications/audio/clementine/default.nix
index 82f24b05f72..604c35f46ce 100644
--- a/pkgs/applications/audio/clementine/default.nix
+++ b/pkgs/applications/audio/clementine/default.nix
@@ -6,11 +6,11 @@
 let withSpotify = config.clementine.spotify or false;
 in
 stdenv.mkDerivation {
-  name = "clementine-1.2.1";
+  name = "clementine-1.2.3";
 
   src = fetchurl {
-    url = http://clementine-player.googlecode.com/files/clementine-1.2.1.tar.gz;
-    sha256 = "0kk5cjmb8nirx0im3c0z91af2k72zxi6lwzm6rb57qihya5nwmfv";
+    url = https://github.com/clementine-player/Clementine/archive/1.2.3.tar.gz;
+    sha256 = "1gx1109i4pylz6x7gvp4rdzc6dvh0w6in6hfbygw01d08l26bxbx";
   };
 
   patches = [ ./clementine-1.2.1-include-paths.patch ];
@@ -40,6 +40,8 @@ stdenv.mkDerivation {
     usbmuxd
   ] ++ stdenv.lib.optional withSpotify libspotify;
 
+  enableParallelBuilding = true;
+
   meta = with stdenv.lib; {
     homepage = "http://www.clementine-player.org";
     description = "A multiplatform music player";
@@ -47,6 +49,6 @@ stdenv.mkDerivation {
     platforms = platforms.linux;
     maintainers = [ maintainers.ttuegel ];
     # libspotify is unfree
-    hydraPlatforms = optional (!withSpotify) platforms.linux;
+    hydraPlatforms = optionals (!withSpotify) platforms.linux;
   };
 }