forked from mirrors/nixpkgs
Merge pull request #207164 from SuperSandro2000/qtbase
qt5.qtbase: remove ? null asserts
This commit is contained in:
commit
0325df89b4
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue