diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-06-30 19:10:28 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-06-30 19:16:01 +0200 |
commit | 023ff651462f70004c7a92b19fd072ee3138e5a2 (patch) | |
tree | b572c75cc7437bda3167779f6b52f014ad4731bc /gnu | |
parent | 902a48e0d3ce4a1983a6d3f71472639a8e59c48f (diff) |
gnu: opensmtpd: Build with OpenSSL.
When building with libressl, smtpd will silently segfault in libtls.so.
* gnu/packages/mail.scm (opensmtpd)[inputs]: Replace libressl with
openssl.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mail.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index e300ba97e8..35360ba12e 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -3187,8 +3187,8 @@ from the Cyrus IMAP project.") (inputs (list bdb libevent - libressl ; recommended, and supports e.g. ECDSA linux-pam + openssl ; XXX recommended libressl segfaults zlib)) (native-inputs (list bison groff)) ; for man pages |