clementine: version bump 1.2.1 -> 1.2.3 (close #3570)
@vcunat: fix hydraPlatforms type (list nestedness), enableParallelBuilding.
This commit is contained in:
parent
56f3bf4639
commit
d3cdf16079
@ -6,11 +6,11 @@
|
|||||||
let withSpotify = config.clementine.spotify or false;
|
let withSpotify = config.clementine.spotify or false;
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "clementine-1.2.1";
|
name = "clementine-1.2.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://clementine-player.googlecode.com/files/clementine-1.2.1.tar.gz;
|
url = https://github.com/clementine-player/Clementine/archive/1.2.3.tar.gz;
|
||||||
sha256 = "0kk5cjmb8nirx0im3c0z91af2k72zxi6lwzm6rb57qihya5nwmfv";
|
sha256 = "1gx1109i4pylz6x7gvp4rdzc6dvh0w6in6hfbygw01d08l26bxbx";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./clementine-1.2.1-include-paths.patch ];
|
patches = [ ./clementine-1.2.1-include-paths.patch ];
|
||||||
@ -40,6 +40,8 @@ stdenv.mkDerivation {
|
|||||||
usbmuxd
|
usbmuxd
|
||||||
] ++ stdenv.lib.optional withSpotify libspotify;
|
] ++ stdenv.lib.optional withSpotify libspotify;
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://www.clementine-player.org";
|
homepage = "http://www.clementine-player.org";
|
||||||
description = "A multiplatform music player";
|
description = "A multiplatform music player";
|
||||||
@ -47,6 +49,6 @@ stdenv.mkDerivation {
|
|||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.ttuegel ];
|
maintainers = [ maintainers.ttuegel ];
|
||||||
# libspotify is unfree
|
# libspotify is unfree
|
||||||
hydraPlatforms = optional (!withSpotify) platforms.linux;
|
hydraPlatforms = optionals (!withSpotify) platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user