openldap: enable crypt

This commit is contained in:
Tim Digel 2017-08-08 11:48:49 +02:00
parent 989514f38b
commit e3d9f6b21b

View File

@ -20,6 +20,7 @@ stdenv.mkDerivation rec {
"--disable-dependency-tracking" # speeds up one-time build
"--enable-modules"
"--sysconfdir=/etc"
"--enable-crypt"
] ++ stdenv.lib.optional (openssl == null) "--without-tls"
++ stdenv.lib.optional (cyrus_sasl == null) "--without-cyrus-sasl"
++ stdenv.lib.optional stdenv.isFreeBSD "--with-pic";