vlc: fix meta.broken

This commit is contained in:
Thomas Tuegel 2020-09-26 06:32:35 -05:00
parent c70831a9fb
commit 06697c7e29
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -99,6 +99,6 @@ stdenv.mkDerivation rec {
homepage = "http://www.videolan.org/vlc/";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
broken = versionAtLeast qtbase.version "5.15";
broken = if qtbase != null then versionAtLeast qtbase.version "5.15" else false;
};
}