summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2025-11-26 09:50:13 +0100
committerAndreas Enge <andreas@enge.fr>2025-11-26 09:50:17 +0100
commit8f7ba9697bb3bc63c3bec02de56a80e546c00dec (patch)
treeb4f290ac82945d234a6f767ac3de4601bac13558 /gnu
parente9c4dc10bfaba77e2619cb38acc5c4a9d15b284a (diff)
gnu: Remove opensmtpd-extras.
* gnu/packages/mail.scm (opensmtpd-extras): Delete variable. Fixes: guix/guix#3864 Change-Id: Ic909c437da838bb72658cb8b45d2179536ca5b79
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/mail.scm61
1 files changed, 0 insertions, 61 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 63a82fb56bb..f78fe0a769a 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -3499,67 +3499,6 @@ to esoteric or niche requirements.")
(license:non-copyleft "file://COPYING")
license:public-domain license:isc license:openssl))))
-(define-public opensmtpd-extras
- (package
- (name "opensmtpd-extras")
- (version "6.7.1")
- (source (origin
- (method url-fetch)
- (uri (string-append "https://www.opensmtpd.org/archives/"
- "opensmtpd-extras-" version ".tar.gz"))
- (sha256
- (base32
- "1b1mx71bvmv92lbm08wr2p60g3qhikvv3n15zsr6dcwbk9aqahzq"))))
- (build-system gnu-build-system)
- (native-inputs
- (list pkg-config))
- (inputs
- `(("libressl" ,libressl)
- ("libevent" ,libevent)
- ("libxcrypt" ,libxcrypt) ;required by Python.h
- ("mysql" ,mariadb "dev")
- ("opensmtpd" ,opensmtpd)
- ("postgresql" ,postgresql)
- ("python" ,python-2)
- ("sqlite" ,sqlite)))
- (arguments
- `(#:configure-flags
- (list "--sysconfdir=/etc"
- "--localstatedir=/var"
-
- "--with-queue-null"
- "--with-queue-python"
- "--with-queue-ram"
- "--with-queue-stub"
-
- "--with-table-ldap"
- "--with-table-mysql"
- "--with-table-postgres"
- ;; "--with-table-redis" ; TODO: package hiredis
- "--with-table-socketmap"
- "--with-table-passwd"
- "--with-table-python"
- "--with-table-sqlite"
- "--with-table-stub"
-
- "--with-scheduler-ram"
- "--with-scheduler-stub"
- "--with-scheduler-python"
-
- "--with-user-smtpd=smtpd"
-
- ;; We have to configure it like this because the default checks for
- ;; for example Python in /usr/{,local/}bin and fails otherwise.
- (string-append "--with-python="
- (assoc-ref %build-inputs "python")))))
- (home-page "https://www.opensmtpd.org")
- (synopsis "Extra tables, filters, and various other addons for OpenSMTPD")
- (description
- "This package provides extra tables, filters, and various other addons
-for OpenSMTPD to extend its functionality.")
- (license (list license:bsd-2 license:bsd-3 ; openbsd-compat
- license:isc)))) ; everything else
-
(define-public libopensmtpd
;; Private source dependency of opensmtpd-filter-dkimsign (by the same
;; author), until any project actually uses it in its compiled form.