qt5.vlc: mark broken with Qt 5.7

This commit is contained in:
Thomas Tuegel 2016-09-07 20:57:55 -05:00
parent c6246e9c72
commit e25a07e92a
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -76,5 +76,9 @@ stdenv.mkDerivation rec {
homepage = http://www.videolan.org/vlc/;
platforms = platforms.linux;
license = licenses.lgpl21Plus;
broken =
if withQt5
then builtins.compareVersions qtbase.version "5.7.0" >= 0
else false;
};
}