forked from mirrors/nixpkgs
Merge pull request #207164 from SuperSandro2000/qtbase
qt5.qtbase: remove ? null asserts
This commit is contained in:
commit
0325df89b4
1 changed files with 1 additions and 4 deletions
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
# optional dependencies
|
# optional dependencies
|
||||||
, cups ? null, libmysqlclient ? null, postgresql ? null
|
, cups ? null, libmysqlclient ? null, postgresql ? null
|
||||||
, withGtk3 ? false, dconf ? null, gtk3 ? null
|
, withGtk3 ? false, dconf, gtk3
|
||||||
|
|
||||||
# options
|
# options
|
||||||
, libGLSupported ? !stdenv.isDarwin
|
, libGLSupported ? !stdenv.isDarwin
|
||||||
|
@ -26,9 +26,6 @@
|
||||||
, decryptSslTraffic ? false
|
, decryptSslTraffic ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert withGtk3 -> dconf != null;
|
|
||||||
assert withGtk3 -> gtk3 != null;
|
|
||||||
|
|
||||||
let
|
let
|
||||||
compareVersion = v: builtins.compareVersions version v;
|
compareVersion = v: builtins.compareVersions version v;
|
||||||
qmakeCacheName = if compareVersion "5.12.4" < 0 then ".qmake.cache" else ".qmake.stash";
|
qmakeCacheName = if compareVersion "5.12.4" < 0 then ".qmake.cache" else ".qmake.stash";
|
||||||
|
|
Loading…
Add table
Reference in a new issue