This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 493c225aec gnu: mailutils: Don't build with pam on the Hurd.
493c225aec is described below
commit 493c225aecb9fb4b98c64b9fa952502174be840a
Author: Yelninei <[email protected]>
AuthorDate: Sat Aug 22 08:24:44 2026 +0000
gnu: mailutils: Don't build with pam on the Hurd.
* gnu/packages/mail.scm (mailutils)[inputs]:
Remove linux-pam on Hurd targets.
Merges: https://codeberg.org/guix/guix/pulls/10719
Signed-off-by: Nguyễn Gia Phong <[email protected]>
---
gnu/packages/mail.scm | 23 +++++++++++++----------
1 file changed, 13 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index f4ef85d348..290434229d 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -508,16 +508,19 @@ POP3/POP3-S as well as CalDAV and CardDAV.")
perl ;for 'gylwrap'
texinfo))
(inputs
- (list gdbm
- gnutls
- gsasl
- guile-3.0
- libltdl
- libunistring ;required for SEARCH CHARSET
- libxcrypt
- linux-pam
- ncurses
- readline))
+ (append
+ (if (target-hurd?)
+ '()
+ (list linux-pam))
+ (list gdbm
+ gnutls
+ gsasl
+ guile-3.0
+ libltdl
+ libunistring ;required for SEARCH CHARSET
+ libxcrypt
+ ncurses
+ readline)))
(home-page "https://mailutils.org")
(synopsis "Utilities and library for reading and serving mail")
(description