qt5.qtbase: remove ? null asserts

This commit is contained in:
Sandro Jäckel 2022-12-21 23:35:56 +01:00
parent 51850fafcc
commit 1b84946f07
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -14,7 +14,7 @@
# optional dependencies
, cups ? null, libmysqlclient ? null, postgresql ? null
, withGtk3 ? false, dconf ? null, gtk3 ? null
, withGtk3 ? false, dconf, gtk3
# options
, libGLSupported ? !stdenv.isDarwin
@ -26,9 +26,6 @@
, decryptSslTraffic ? false
}:
assert withGtk3 -> dconf != null;
assert withGtk3 -> gtk3 != null;
let
compareVersion = v: builtins.compareVersions version v;
qmakeCacheName = if compareVersion "5.12.4" < 0 then ".qmake.cache" else ".qmake.stash";