2009-09-10 23:08:46 +02:00
|
|
|
{ stdenv, fetchurl, lib, cmake, qt4, perl, gettext, curl, libxml2, mysql, taglib, loudmouth
|
|
|
|
, kdelibs, automoc4, phonon, strigi, soprano}:
|
2009-08-15 16:02:49 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-09-10 23:08:46 +02:00
|
|
|
name = "amarok-2.1.1";
|
2009-08-15 16:02:49 +02:00
|
|
|
src = fetchurl {
|
2009-09-10 23:08:46 +02:00
|
|
|
url = mirror://kde/stable/amarok/2.1.1/src/amarok-2.1.1.tar.bz2;
|
|
|
|
sha256 = "0z0irnb86f00w8d0iapbdwygwm5vr83jhfmjd1xdldsyjrz65mi7";
|
2009-08-15 16:02:49 +02:00
|
|
|
};
|
|
|
|
includeAllQtDirs=true;
|
|
|
|
inherit mysql loudmouth;
|
|
|
|
builder = ./builder.sh;
|
|
|
|
buildInputs = [ cmake qt4 perl stdenv.gcc.libc gettext curl libxml2 mysql taglib loudmouth
|
|
|
|
kdelibs automoc4 phonon strigi soprano ];
|
2009-09-10 23:08:46 +02:00
|
|
|
meta = {
|
|
|
|
description = "Popular music player for KDE";
|
|
|
|
license = "GPL";
|
|
|
|
homepage = http://amarok.kde.org;
|
|
|
|
maintainers = [ lib.maintainers.sander ];
|
|
|
|
};
|
2009-08-15 16:02:49 +02:00
|
|
|
}
|