27 lines
881 B
Nix
27 lines
881 B
Nix
|
{ stdenv, fetchurl, cmake, qt4, automoc4, pkgconfig
|
||
|
, libXau, libXdmcp, libpthreadstubs
|
||
|
, gstreamer, gstPluginsBase, xineLib, pulseaudio}:
|
||
|
|
||
|
let
|
||
|
v = "4.4.2";
|
||
|
stable = true;
|
||
|
in
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "phonon-${v}";
|
||
|
src = fetchurl {
|
||
|
url = "mirror://kde/${if stable then "" else "un"}stable/phonon/${v}/${name}.tar.bz2";
|
||
|
sha256 = "11ilv692yqzvk93y3n2zp9qvqc2xi0npz8vbqa1b60b268zlqh7i";
|
||
|
};
|
||
|
buildInputs = [ cmake qt4 libXau libXdmcp libpthreadstubs gstreamer
|
||
|
gstPluginsBase xineLib automoc4 pulseaudio pkgconfig ];
|
||
|
meta = with stdenv.lib; {
|
||
|
platforms = platforms.linux;
|
||
|
description = "KDE Multimedia API";
|
||
|
longDescription = "KDE Multimedia API which abstracts over various backends such as GStreamer and Xine";
|
||
|
license = "LGPL";
|
||
|
homepage = http://phonon.kde.org;
|
||
|
maintainers = [ maintainers.sander maintainers.urkud ];
|
||
|
};
|
||
|
}
|