vlc: nullify libcaca attribute

Newest libcaca changed the API, and libvlc didn't catch it. Until next version
of VLC arrives, it is safer to disable it.
This commit is contained in:
AndersonTorres 2022-01-03 10:03:06 -03:00
parent bd61c16560
commit 86d00329cb

View File

@ -29275,7 +29275,12 @@ with pkgs;
vkeybd = callPackage ../applications/audio/vkeybd {};
vlc = libsForQt5.callPackage ../applications/video/vlc {};
vlc = libsForQt5.callPackage ../applications/video/vlc {
# Newest libcaca changed the API, and libvlc didn't catch it. Until next
# version arrives, it is safer to disable it.
# Upstream thread: https://code.videolan.org/videolan/vlc/-/issues/26389
libcaca = null;
};
vlc_qt5 = vlc;