From 9185ab09d4533ad0ca95884d26487848c4f6a6f2 Mon Sep 17 00:00:00 2001 From: Artem Leshchev Date: Fri, 9 Sep 2022 16:54:51 +0300 Subject: [PATCH] kdepim-runtime: fixup SASL_PATH In #177410 `SASL_PATH` was set for kdepim-runtime binaries to allow usage of plugin for XOAUTH2, which is required for some mail servers like Gmail. Unfortunately in that PR wrong output of cyrus_sasl was chosen, fixing it in this PR. --- pkgs/applications/kde/kdepim-runtime/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/kde/kdepim-runtime/default.nix b/pkgs/applications/kde/kdepim-runtime/default.nix index b73e5a1800b0..0cc78c69aec7 100644 --- a/pkgs/applications/kde/kdepim-runtime/default.nix +++ b/pkgs/applications/kde/kdepim-runtime/default.nix @@ -24,6 +24,6 @@ mkDerivation { qca-qt5 qtkeychain qtnetworkauth qtspeech qtxmlpatterns ]; qtWrapperArgs = [ - "--prefix SASL_PATH : ${lib.makeSearchPath "lib/sasl2" [ cyrus_sasl libkgapi ]}" + "--prefix SASL_PATH : ${lib.makeSearchPath "lib/sasl2" [ cyrus_sasl.out libkgapi ]}" ]; }