2010-04-19 12:24:13 +02:00
|
|
|
{ stdenv, fetchurl, lib, cmake, qt4, qtscriptgenerator, perl, gettext, curl, libxml2, mysql, taglib, taglib_extras, loudmouth
|
2010-02-10 16:06:50 +01:00
|
|
|
, kdelibs, automoc4, phonon, strigi, soprano, qca2}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-03-23 23:18:25 +01:00
|
|
|
name = "amarok-2.3.0";
|
2010-02-10 16:06:50 +01:00
|
|
|
src = fetchurl {
|
2010-03-23 23:18:25 +01:00
|
|
|
url = mirror://kde/stable/amarok/2.3.0/src/amarok-2.3.0.tar.bz2;
|
|
|
|
sha256 = "1a2c6qy2ik9l7r1lxm82h49acvzxsxxlnlgzwhlrhi27p3sk0xpw";
|
2010-02-10 16:06:50 +01:00
|
|
|
};
|
|
|
|
inherit mysql loudmouth;
|
|
|
|
QT_PLUGIN_PATH="${qtscriptgenerator}/lib/qt4/plugins";
|
|
|
|
builder = ./builder.sh;
|
2010-04-19 12:24:13 +02:00
|
|
|
buildInputs = [ cmake qt4 qtscriptgenerator perl stdenv.gcc.libc gettext curl libxml2 mysql taglib taglib_extras loudmouth
|
2010-02-10 16:06:50 +01:00
|
|
|
kdelibs automoc4 phonon strigi soprano qca2];
|
|
|
|
meta = {
|
|
|
|
description = "Popular music player for KDE";
|
|
|
|
license = "GPL";
|
|
|
|
homepage = http://amarok.kde.org;
|
|
|
|
maintainers = [ lib.maintainers.sander ];
|
|
|
|
};
|
|
|
|
}
|