mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
opensmtpd: fix some configure options (#15742)
This commit is contained in:
parent
a487cacef4
commit
aa4e1093c5
1 changed files with 6 additions and 6 deletions
|
@ -37,15 +37,15 @@ stdenv.mkDerivation rec {
|
|||
"--sysconfdir=/etc"
|
||||
"--localstatedir=/var"
|
||||
"--with-mantype=doc"
|
||||
"--with-pam"
|
||||
"--without-bsd-auth"
|
||||
"--with-sock-dir=/run"
|
||||
"--with-auth-pam"
|
||||
"--without-auth-bsdauth"
|
||||
"--with-path-socket=/run"
|
||||
"--with-user-smtpd=smtpd"
|
||||
"--with-user-queue=smtpq"
|
||||
"--with-group-queue=smtpq"
|
||||
"--with-ca-file=/etc/ssl/certs/ca-certificates.crt"
|
||||
"--with-libevent-dir=${libevent.dev}"
|
||||
"--enable-table-db"
|
||||
"--with-path-CAfile=/etc/ssl/certs/ca-certificates.crt"
|
||||
"--with-libevent=${libevent.dev}"
|
||||
"--with-table-db"
|
||||
];
|
||||
|
||||
installFlags = [
|
||||
|
|
Loading…
Reference in a new issue