summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.3/extragear/amarok/default.nix
blob: 92e80a96bca65d43648307625d93e1f12e32f7c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, lib, cmake, qt4, perl, gettext, curl, libxml2, mysql, taglib, 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;
  builder = ./builder.sh;
  buildInputs = [ cmake qt4 perl stdenv.gcc.libc gettext curl libxml2 mysql taglib loudmouth
                  kdelibs automoc4 phonon strigi soprano ];
  meta = {
    description = "Popular music player for KDE";
    license = "GPL";
    homepage = http://amarok.kde.org;
    maintainers = [ lib.maintainers.sander ];
  };
}