0ff1faaf1b
- Added taglib-extras package (dependency for Amarok) - Upgraded Amarok to 2.1.1 svn path=/nixpkgs/trunk/; revision=17045
23 lines
876 B
Nix
23 lines
876 B
Nix
{ stdenv, fetchurl, lib, cmake, qt4, qtscriptgenerator, perl, gettext, curl, libxml2, mysql, taglib, taglib_extras, loudmouth
|
|
, kdelibs, automoc4, phonon, strigi, soprano}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "amarok-2.1.1";
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/amarok/2.1.1/src/amarok-2.1.1.tar.bz2;
|
|
sha256 = "0z0irnb86f00w8d0iapbdwygwm5vr83jhfmjd1xdldsyjrz65mi7";
|
|
};
|
|
includeAllQtDirs=true;
|
|
inherit mysql loudmouth;
|
|
QT_PLUGIN_PATH="${qtscriptgenerator}/lib/qt4/plugins";
|
|
builder = ./builder.sh;
|
|
buildInputs = [ cmake qt4 qtscriptgenerator perl stdenv.gcc.libc gettext curl libxml2 mysql taglib taglib_extras loudmouth
|
|
kdelibs automoc4 phonon strigi soprano ];
|
|
meta = {
|
|
description = "Popular music player for KDE";
|
|
license = "GPL";
|
|
homepage = http://amarok.kde.org;
|
|
maintainers = [ lib.maintainers.sander ];
|
|
};
|
|
}
|