summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/uim/default.nix
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2017-12-22 14:57:32 +0300
committergnidorah <gnidorah@users.noreply.github.com>2017-12-22 15:19:37 +0300
commit03f2f8524a20f2327133303048d5d81121db6acc (patch)
treed16a4875db242e0c4c7493a023d98457cfd92010 /pkgs/tools/inputmethods/uim/default.nix
parent6236dd8e2d8ebf973bba67b397a30bb52fcf0d22 (diff)
downloadnixpkgs-03f2f8524a20f2327133303048d5d81121db6acc.tar
nixpkgs-03f2f8524a20f2327133303048d5d81121db6acc.tar.gz
nixpkgs-03f2f8524a20f2327133303048d5d81121db6acc.tar.bz2
nixpkgs-03f2f8524a20f2327133303048d5d81121db6acc.tar.lz
nixpkgs-03f2f8524a20f2327133303048d5d81121db6acc.tar.xz
nixpkgs-03f2f8524a20f2327133303048d5d81121db6acc.tar.zst
nixpkgs-03f2f8524a20f2327133303048d5d81121db6acc.zip
uim: drop kde4 parts
Diffstat (limited to 'pkgs/tools/inputmethods/uim/default.nix')
-rw-r--r--pkgs/tools/inputmethods/uim/default.nix14
1 files changed, 2 insertions, 12 deletions
diff --git a/pkgs/tools/inputmethods/uim/default.nix b/pkgs/tools/inputmethods/uim/default.nix
index bba55acc060..96b88714178 100644
--- a/pkgs/tools/inputmethods/uim/default.nix
+++ b/pkgs/tools/inputmethods/uim/default.nix
@@ -6,10 +6,7 @@
 , withGtk3 ? withGtk, gtk3 ? null
 , withQt ? true
 , withQt4 ? withQt, qt4 ? null
-, withKde ? withQt
-, withKde4 ? withKde && withQt4, kdelibs4 ? null, automoc4 ? null
-, withKNotify4 ? false
-, withLibnotify ? !withKNotify4, libnotify ? null
+, withLibnotify ? true, libnotify ? null
 , withSqlite ? true, sqlite ? null
 , withNetworking ? true, curl ? null, openssl ? null
 , withFFI ? true, libffi ? null
@@ -24,9 +21,7 @@ assert withAnthy -> anthy != null;
 assert withGtk2 -> gtk2 != null;
 assert withGtk3 -> gtk3 != null;
 assert withQt4 -> qt4 != null;
-assert withKde4 -> withQt4 && kdelibs4 != null && automoc4 != null;
-assert withKNotify4 -> withKde4 && !withLibnotify;
-assert withLibnotify -> !withKNotify4 && libnotify != null;
+assert withLibnotify -> libnotify != null;
 assert withSqlite -> sqlite != null;
 assert withNetworking -> curl != null && openssl != null;
 assert withFFI -> libffi != null;
@@ -49,9 +44,6 @@ stdenv.mkDerivation rec {
   ++ optional withGtk2 gtk2
   ++ optional withGtk3 gtk3
   ++ optional withQt4 qt4
-  ++ optionals withKde4 [
-    kdelibs4 automoc4
-  ]
   ++ optional withLibnotify libnotify
   ++ optional withSqlite sqlite
   ++ optionals withNetworking [
@@ -76,8 +68,6 @@ stdenv.mkDerivation rec {
     "--with-qt4"
     "--with-qt4-immodule"
   ]
-  ++ optional withKde4 "--enable-kde4-applet"
-  ++ optional withKNotify4 "--enable-notify=knotify4"
   ++ optional withLibnotify "--enable-notify=libnotify"
   ++ optional withSqlite "--with-sqlite3"
   ++ optionals withNetworking [