2015-09-27 18:11:01 +03:00
|
|
|
{ stdenv, fetchurl, lib, automoc4, cmake, perl, pkgconfig
|
|
|
|
, qtscriptgenerator, gettext, curl , libxml2, mysql, taglib
|
|
|
|
, taglib_extras, loudmouth , kdelibs , qca2, libmtp, liblastfm, libgpod
|
|
|
|
, phonon , strigi, soprano, qjson, ffmpeg, libofa, nepomuk_core ? null
|
2016-05-04 10:06:43 +03:00
|
|
|
, lz4, lzo, snappy, libaio, pcre
|
2015-09-27 18:11:01 +03:00
|
|
|
}:
|
2010-09-26 23:40:30 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
pname = "amarok";
|
2013-08-21 21:39:32 +04:00
|
|
|
version = "2.8.0";
|
2010-09-26 23:40:30 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.bz2";
|
2013-08-21 21:39:32 +04:00
|
|
|
sha256 = "1ilf9wdp3wna5pmvxill8x08rb9gw86qkc2zwm3xk9hpy8l9pf7l";
|
2010-09-26 23:40:30 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
QT_PLUGIN_PATH="${qtscriptgenerator}/lib/qt4/plugins";
|
2013-08-21 21:39:32 +04:00
|
|
|
|
2015-09-27 18:11:01 +03:00
|
|
|
nativeBuildInputs = [ automoc4 cmake perl pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
qtscriptgenerator stdenv.cc.libc gettext curl libxml2 mysql.lib
|
|
|
|
taglib taglib_extras loudmouth kdelibs phonon strigi soprano qca2
|
|
|
|
libmtp liblastfm libgpod qjson ffmpeg libofa nepomuk_core
|
2016-05-04 10:06:43 +03:00
|
|
|
lz4 lzo snappy libaio pcre
|
2015-09-27 18:11:01 +03:00
|
|
|
];
|
2010-09-26 23:40:30 +04:00
|
|
|
|
2015-12-26 20:42:03 +03:00
|
|
|
# This is already fixed upstream, will be release in 2.9
|
2015-12-26 20:00:20 +03:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake
|
|
|
|
'';
|
|
|
|
|
2013-05-10 05:13:31 +04:00
|
|
|
cmakeFlags = "-DKDE4_BUILD_TESTS=OFF";
|
|
|
|
|
2014-02-13 06:14:58 +04:00
|
|
|
propagatedUserEnvPkgs = [ qtscriptgenerator ];
|
2012-08-31 12:05:47 +04:00
|
|
|
|
2010-09-26 23:40:30 +04:00
|
|
|
meta = {
|
2014-02-13 06:14:58 +04:00
|
|
|
repositories.git = git://anongit.kde.org/amarok.git;
|
2010-09-26 23:40:30 +04:00
|
|
|
description = "Popular music player for KDE";
|
|
|
|
license = "GPL";
|
|
|
|
homepage = http://amarok.kde.org;
|
|
|
|
inherit (kdelibs.meta) platforms maintainers;
|
|
|
|
};
|
|
|
|
}
|