8d6502f8ca
`minitube` is currently broken transitively due to the broken `phonon-backend-qt4`: https://hydra.nixos.org/build/76523277 Although QT4 is fairly old, this package is still built with `qt4` ATM, however QT5 is available as well. After this change, QT5 will be built by default and in case anybody requires legacy QT4 it has to be enabled explicitly like this: ``` with import <nixpkgs> { }; phonon-backend-vlc.override { withQt4 = true; } ``` Now the QT5-only build can be used (which fixes `minitube`) and there are no confusions anymore with the build dependencies. Previously `phonon-backend-vlc` and `libsForQt5.phonon-backend-vlc` used `qt4` by default which was likely responsible for broken `minitube`.
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ stdenv, lib, fetchurl, cmake, phonon, pkgconfig, vlc
|
|
, extra-cmake-modules, qtbase ? null, qtx11extras ? null, qt4 ? null
|
|
, withQt4 ? false
|
|
, debug ? false
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
v = "0.10.1";
|
|
pname = "phonon-backend-vlc";
|
|
in
|
|
|
|
assert withQt4 -> qt4 != null;
|
|
assert !withQt4 -> qtbase != null;
|
|
assert !withQt4 -> qtx11extras != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${if withQt4 then "qt4" else "qt5"}-${v}";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://phonon.kde.org/;
|
|
description = "GStreamer backend for Phonon";
|
|
platforms = platforms.linux;
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/phonon/${pname}/${v}/${pname}-${v}.tar.xz";
|
|
sha256 = "0b87mzkw9fdkrwgnh1kw5i5wnrd05rl42hynlykb7cfymsk6v5h9";
|
|
};
|
|
|
|
buildInputs =
|
|
[ phonon vlc ]
|
|
++ (if withQt4 then [ qt4 ] else [ qtbase qtx11extras ]);
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ] ++ optional (!withQt4) extra-cmake-modules;
|
|
|
|
cmakeFlags =
|
|
[ "-DCMAKE_BUILD_TYPE=${if debug then "Debug" else "Release"}" ]
|
|
++ optional (!withQt4) "-DPHONON_BUILD_PHONON4QT5=ON";
|
|
}
|