strawberry: use libvlc

This commit is contained in:
Thomas Tuegel 2020-09-25 10:53:28 -05:00 committed by Thomas Tuegel
parent b5a5ed3735
commit b3ab15a057
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -30,7 +30,7 @@
, withGstreamer ? true , withGstreamer ? true
, gst_all_1 ? null , gst_all_1 ? null
, withVlc ? true , withVlc ? true
, vlc ? null , libvlc ? null
}: }:
mkDerivation rec { mkDerivation rec {
@ -75,7 +75,7 @@ mkDerivation rec {
gst-plugins-good gst-plugins-good
gst-plugins-ugly gst-plugins-ugly
]) ])
++ lib.optional withVlc vlc; ++ lib.optional withVlc libvlc;
nativeBuildInputs = [ cmake ninja pkgconfig qttools ]; nativeBuildInputs = [ cmake ninja pkgconfig qttools ];