gnu: mpg123: Update to 1.26.0.

* gnu/packages/mp3.scm (mpg123): Update to 1.26.0.
[inputs]: Re-order alphabetically.
This commit is contained in:
Nicolas Goaziou 2020-05-29 23:23:38 +02:00
parent 91c8b23e57
commit fa3e71d674
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -309,22 +309,24 @@ (define-public mp3splt
(define-public mpg123
(package
(name "mpg123")
(version "1.25.13")
(source (origin
(method url-fetch)
(uri (list (string-append "mirror://sourceforge/mpg123/mpg123/"
version "/mpg123-" version ".tar.bz2")
(string-append
"https://www.mpg123.org/download/mpg123-"
version ".tar.bz2")))
(sha256
(base32
"02l915jq0ymndb082g6w89bpf66z04ifa1lr7ga3yycw6m46hc4h"))))
(version "1.26.0")
(source
(origin
(method url-fetch)
(uri (list (string-append "mirror://sourceforge/mpg123/mpg123/"
version "/mpg123-" version ".tar.bz2")
(string-append
"https://www.mpg123.org/download/mpg123-"
version ".tar.bz2")))
(sha256
(base32 "0s62k45mz6264h0ljkrrs9vyagvl78q9pxhi7dnbk56pmgs0br74"))))
(build-system gnu-build-system)
(arguments '(#:configure-flags '("--with-default-audio=pulse")))
(native-inputs `(("pkg-config" ,pkg-config)))
(inputs `(("pulseaudio" ,pulseaudio)
("alsa-lib" ,alsa-lib)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(inputs
`(("alsa-lib" ,alsa-lib)
("pulseaudio" ,pulseaudio)))
(home-page "https://www.mpg123.org/")
(synopsis "Console MP3 player and decoder library")
(description