quassel: add ldap support for core

allows using ldap as an authentication backend for the core.

+3 -2
+3 -2
pkgs/applications/networking/irc/quassel/default.nix
··· 6 6 7 7 , lib, stdenv, fetchFromGitHub, cmake, makeWrapper, dconf 8 8 , mkDerivation, qtbase, boost, zlib, qtscript 9 - , phonon, libdbusmenu, qca-qt5 9 + , phonon, libdbusmenu, qca-qt5, openldap 10 10 11 11 , withKDE ? true # enable KDE integration 12 12 , extra-cmake-modules ··· 47 47 48 48 nativeBuildInputs = [ cmake makeWrapper ]; 49 49 buildInputs = [ qtbase boost zlib ] 50 - ++ lib.optionals buildCore [qtscript qca-qt5 ] 50 + ++ lib.optionals buildCore [qtscript qca-qt5 openldap] 51 51 ++ lib.optionals buildClient [libdbusmenu phonon] 52 52 ++ lib.optionals (buildClient && withKDE) [ 53 53 extra-cmake-modules kconfigwidgets kcoreaddons ··· 62 62 ++ edf static "STATIC" 63 63 ++ edf monolithic "WANT_MONO" 64 64 ++ edf enableDaemon "WANT_CORE" 65 + ++ edf enableDaemon "WITH_LDAP" 65 66 ++ edf client "WANT_QTCLIENT" 66 67 ++ edf withKDE "WITH_KDE"; 67 68