guix_mirror_bot pushed a commit to branch world-rebuild in repository guix.
commit 2e53b7ef8041cc93e0fe130091fa5f4e61d1af34 Author: SilverlightningY <[email protected]> AuthorDate: Sat Jul 11 15:02:47 2026 +0200 gnu: mpg123: Update to 1.33.7. * gnu/packages/mp3.scm (mpg123)[version]: Update to 1.33.7. (libmpg123, libout123, libsyn123): Switch to package/inherit. Merges: https://codeberg.org/guix/guix/pulls/9872 Reviewed-by: Sughosha <[email protected]> Signed-off-by: Nguyễn Gia Phong <[email protected]> --- gnu/packages/mp3.scm | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/gnu/packages/mp3.scm b/gnu/packages/mp3.scm index 3ff5bb792d..328be82a96 100644 --- a/gnu/packages/mp3.scm +++ b/gnu/packages/mp3.scm @@ -439,7 +439,7 @@ This package contains the binary.") (define-public mpg123 (package (name "mpg123") - (version "1.33.5") + (version "1.33.7") (source (origin (method url-fetch) @@ -448,7 +448,7 @@ This package contains the binary.") (string-append "https://www.mpg123.org/download/mpg123-" version ".tar.bz2"))) (sha256 - (base32 "1pfnz4wsgwwraj65ns2nn9dyw0p4vdm5lswc7hwcmwxgl26vqzhd")))) + (base32 "1vh3via7ipfajl6yzmmc7rnmshxl5c3c79mxbsdyqrx59idf7l1i")))) (build-system gnu-build-system) (arguments (list @@ -465,8 +465,7 @@ This package contains the binary.") (license license:lgpl2.1))) (define-public libmpg123 - (package - (inherit mpg123) + (package/inherit mpg123 (name "libmpg123") (arguments (list @@ -479,8 +478,7 @@ This package contains the binary.") and 3 (MPEG 1.0 layer 3 aka MP3 most commonly tested)."))) (define-public libout123 - (package - (inherit mpg123) + (package/inherit mpg123 (name "libout123") (arguments (list @@ -497,8 +495,7 @@ focus of the library is to ease the use case of just getting raw audio data out there, without interruptions."))) (define-public libsyn123 - (package - (inherit mpg123) + (package/inherit mpg123 (name "libsyn123") (arguments (list
