2016-04-22 14:11:10 +01:00
|
|
|
{ stdenv, lib, fetchurl, cmake, phonon, pkgconfig, vlc
|
2016-07-29 16:29:41 +01:00
|
|
|
, extra-cmake-modules, qtbase ? null, qtx11extras ? null, qt4 ? null
|
|
|
|
, withQt5 ? false
|
|
|
|
, debug ? false
|
|
|
|
}:
|
2016-04-22 14:11:10 +01:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2018-04-16 07:01:06 +01:00
|
|
|
v = "0.10.1";
|
2016-04-22 14:11:10 +01:00
|
|
|
pname = "phonon-backend-vlc";
|
|
|
|
in
|
|
|
|
|
|
|
|
assert withQt5 -> qtbase != null;
|
|
|
|
assert withQt5 -> qtx11extras != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${if withQt5 then "qt5" else "qt4"}-${v}";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-22 19:50:04 +01:00
|
|
|
homepage = https://phonon.kde.org/;
|
2016-04-22 14:11:10 +01:00
|
|
|
description = "GStreamer backend for Phonon";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-23 15:54:51 +01:00
|
|
|
url = "mirror://kde/stable/phonon/${pname}/${v}/${pname}-${v}.tar.xz";
|
2018-04-16 07:01:06 +01:00
|
|
|
sha256 = "0b87mzkw9fdkrwgnh1kw5i5wnrd05rl42hynlykb7cfymsk6v5h9";
|
2016-04-22 14:11:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ phonon vlc ]
|
|
|
|
++ (if withQt5 then [ qtbase qtx11extras ] else [ qt4 ]);
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ] ++ optional withQt5 extra-cmake-modules;
|
|
|
|
|
|
|
|
cmakeFlags =
|
|
|
|
[ "-DCMAKE_BUILD_TYPE=${if debug then "Debug" else "Release"}" ]
|
|
|
|
++ optional withQt5 "-DPHONON_BUILD_PHONON4QT5=ON";
|
|
|
|
}
|