Merge pull request #65518 from jokogr/f/vlc_use_wrapqtappshook
vlc: use wrapQtAppsHook
This commit is contained in:
commit
d06d718264
|
@ -9,7 +9,7 @@
|
||||||
, libass, libva, libdvbpsi, libdc1394, libraw1394, libopus
|
, libass, libva, libdvbpsi, libdc1394, libraw1394, libopus
|
||||||
, libvdpau, libsamplerate, live555, fluidsynth, wayland, wayland-protocols
|
, libvdpau, libsamplerate, live555, fluidsynth, wayland, wayland-protocols
|
||||||
, onlyLibVLC ? false
|
, onlyLibVLC ? false
|
||||||
, withQt5 ? true, qtbase ? null, qtsvg ? null, qtx11extras ? null
|
, withQt5 ? true, qtbase ? null, qtsvg ? null, qtx11extras ? null, wrapQtAppsHook ? null
|
||||||
, jackSupport ? false
|
, jackSupport ? false
|
||||||
, removeReferencesTo
|
, removeReferencesTo
|
||||||
, chromecastSupport ? true, protobuf, libmicrodns
|
, chromecastSupport ? true, protobuf, libmicrodns
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
assert (withQt5 -> qtbase != null && qtsvg != null && qtx11extras != null);
|
assert (withQt5 -> qtbase != null && qtsvg != null && qtx11extras != null && wrapQtAppsHook != null);
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "vlc-${version}";
|
name = "vlc-${version}";
|
||||||
|
@ -49,7 +49,8 @@ stdenv.mkDerivation rec {
|
||||||
++ optional jackSupport libjack2
|
++ optional jackSupport libjack2
|
||||||
++ optionals chromecastSupport [ protobuf libmicrodns ];
|
++ optionals chromecastSupport [ protobuf libmicrodns ];
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook perl pkgconfig removeReferencesTo ];
|
nativeBuildInputs = [ autoreconfHook perl pkgconfig removeReferencesTo ]
|
||||||
|
++ optionals withQt5 [ wrapQtAppsHook ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue