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