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 6c6e7ada01 gnu: emacs-emms-print-metadata: Fix build.
6c6e7ada01 is described below
commit 6c6e7ada010b1f7195253967dfbd8419549f6997
Author: Ian Eure <[email protected]>
AuthorDate: Fri Jan 23 18:15:20 2026 -0800
gnu: emacs-emms-print-metadata: Fix build.
This package is failing to build, with:
ld: cannot find -lz: No such file or directory
...because `taglib-config --cflags --libs' is included in the gcc arguments,
and includes "-lz". Since zlib isn’t in the inputs, it can’t be found, and
the build fails. Adding it to the package inputs allows the build to
succeed.
Re #5592.
* gnu/packages/emacs-xyz.scm (emacs-emms-print-metadata): Add zlib to
inputs.
Change-Id: I07eaf91e3891f2d0da9f4d0acd166535fb8b58ab
---
gnu/packages/emacs-xyz.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 6e6a596875..57fa02bb55 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5013,7 +5013,7 @@ podcasts) in Emacs.")
(install-file "emms-print-metadata.1"
(string-append #$output "/share/man/man1")))))))
(inputs
- (list taglib))
+ (list taglib zlib))
(home-page "https://www.gnu.org/software/emms/")
(synopsis "The Emacs Multimedia System")
(description