50c4c20678
Upstream changes since 0.8.2: * Performance improvements for collection browsing. * Improved memory footprint. * Show cloud collections above your friends in the sidebar. * Keep looking for alternative sources even when we found a perfect match. * Fixed crash in network code. * Fixed repeat one/all icons. * Be more lenient about accepting JSPF and M3U playlists. * Improved support for compilation albums. * (Windows) Fixed support for Windows XP. * (OS X) Fixed settings dialog appearance on Yosemite. * (OS X) Fixed SSL errors on Yosemite. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
58 lines
1.7 KiB
Nix
58 lines
1.7 KiB
Nix
{ stdenv, fetchurl, cmake, pkgconfig, attica, boost, gnutls, libechonest
|
|
, liblastfm, lucenepp, phonon, phonon_backend_vlc, qca2, qjson, qt4
|
|
, qtkeychain, quazip, sparsehash, taglib, websocketpp, makeWrapper
|
|
|
|
, enableXMPP ? true, libjreen ? null
|
|
, enableKDE ? false, kdelibs ? null
|
|
, enableTelepathy ? false, telepathy_qt ? null
|
|
}:
|
|
|
|
assert enableXMPP -> libjreen != null;
|
|
assert enableKDE -> kdelibs != null;
|
|
assert enableTelepathy -> telepathy_qt != null;
|
|
|
|
let
|
|
quazipQt4 = quazip.override { qt = qt4; };
|
|
in stdenv.mkDerivation rec {
|
|
name = "tomahawk-${version}";
|
|
version = "0.8.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.tomahawk-player.org/${name}.tar.bz2";
|
|
sha256 = "0kjzkq21g3jl1lvadsm7gf0zvpbsv208kqf76wg2hnbm4k1a02wj";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DLUCENEPP_INCLUDE_DIR=${lucenepp}/include"
|
|
"-DLUCENEPP_LIBRARY_DIR=${lucenepp}/lib"
|
|
];
|
|
|
|
buildInputs = [
|
|
cmake pkgconfig attica boost gnutls libechonest liblastfm lucenepp phonon
|
|
qca2 qjson qt4 qtkeychain quazipQt4 sparsehash taglib websocketpp
|
|
makeWrapper
|
|
] ++ stdenv.lib.optional enableXMPP libjreen
|
|
++ stdenv.lib.optional enableKDE kdelibs
|
|
++ stdenv.lib.optional enableTelepathy telepathy_qt;
|
|
|
|
postInstall = let
|
|
pluginPath = stdenv.lib.concatStringsSep ":" [
|
|
"${phonon_backend_vlc}/lib/kde4/plugins"
|
|
];
|
|
in ''
|
|
for i in "$out"/bin/*; do
|
|
wrapProgram "$i" --prefix QT_PLUGIN_PATH : "${pluginPath}"
|
|
done
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A multi-source music player";
|
|
homepage = "http://tomahawk-player.org/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.aszlig ];
|
|
};
|
|
}
|