uim: disable qt support

https://github.com/NixOS/nixpkgs/pull/174634 removed qt4 but enabled
the (previosly disabled) qt5, breaking the build.

Disable qt5 again by disabling qt all together.
This commit is contained in:
Atemu 2023-09-14 12:06:19 +02:00
parent 3a2786eea0
commit b6cb58f768

View File

@ -6,7 +6,7 @@
, withGtk ? true
, withGtk2 ? withGtk, gtk2 ? null
, withGtk3 ? withGtk, gtk3 ? null
, withQt ? true
, withQt ? false # Build with qt5 support is broken and qt4 support has been removed; no qt for now
, withQt5 ? withQt, qt5 ? null
, withLibnotify ? true, libnotify ? null
, withSqlite ? true, sqlite ? null