about summary refs log tree commit diff
path: root/pkgs/applications/kde
diff options
context:
space:
mode:
authorArtem Leshchev <matshch@gmail.com>2022-08-24 22:33:40 +0300
committerGitHub <noreply@github.com>2022-08-24 21:33:40 +0200
commit44c79a01aeb7d3dc5a181e53028c81a0ce6cef02 (patch)
treebc4511f0f3d28449f6d92d7bd3d8f25310a4cf0a /pkgs/applications/kde
parent7a474313c1a28f10dc803815955429085830ef1f (diff)
kdepim-runtime: use XOAUTH2 SASL plugin from libkgapi (#177410)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/applications/kde')
-rw-r--r--pkgs/applications/kde/kdepim-runtime/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/applications/kde/kdepim-runtime/default.nix b/pkgs/applications/kde/kdepim-runtime/default.nix
index 5c64d8826f688..b73e5a1800b08 100644
--- a/pkgs/applications/kde/kdepim-runtime/default.nix
+++ b/pkgs/applications/kde/kdepim-runtime/default.nix
@@ -3,7 +3,7 @@
   extra-cmake-modules, kdoctools,
   shared-mime-info,
   akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime, akonadi-notes,
-  kholidays, kcalutils, kcontacts, kdav, kidentitymanagement,
+  cyrus_sasl, kholidays, kcalutils, kcontacts, kdav, kidentitymanagement,
   kimap, kldap, kmailtransport, kmbox, kmime, knotifications, knotifyconfig,
   pimcommon, libkgapi, libsecret,
   qca-qt5, qtkeychain, qtnetworkauth, qtspeech, qtwebengine, qtxmlpatterns,
@@ -23,4 +23,7 @@ mkDerivation {
     pimcommon libkgapi libsecret
     qca-qt5 qtkeychain qtnetworkauth qtspeech qtxmlpatterns
   ];
+  qtWrapperArgs = [
+    "--prefix SASL_PATH : ${lib.makeSearchPath "lib/sasl2" [ cyrus_sasl libkgapi ]}"
+  ];
 }