guix_mirror_bot pushed a commit to branch audio-team
in repository guix.
commit 0b5025ef111ae02c0af29bc66ed673063088d17e
Author: coopi <[email protected]>
AuthorDate: Thu Apr 16 11:13:29 2026 +0400
gnu: alsa-plugins: Update to 1.2.12.
* gnu/packages/linux.scm (alsa-plugins) [version]: Update to 1.2.12.
[source]: Switch to 'git-fetch'.
[native-inputs]: Add autotools, automake and libtool.
[description]: Reword.
Change-Id: I2702904de4cda6447d21bbca63e4fc1b222548dc
Co-authored-by: SilverlightningY <[email protected]>
Signed-off-by: Gabriel Wicki <[email protected]>
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/linux.scm | 31 +++++++++++++++++--------------
1 file changed, 17 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 0e70cc7f32..0984a8b576 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -4243,14 +4243,16 @@ Linux-based operating system.")
(define-public alsa-plugins
(package
(name "alsa-plugins")
- (version "1.2.2")
- (source (origin
- (method url-fetch)
- (uri (string-append "ftp://ftp.alsa-project.org/pub/plugins/"
- name "-" version ".tar.bz2"))
- (sha256
- (base32
- "0z9k3ssbfk2ky2w13avgyf202j1drsz9sv3834bp33cj1i2hc3qw"))))
+ (version "1.2.12")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/alsa-project/alsa-plugins")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0izvzdvw3nj69l4a968p9d9xjxfxs7i3bdpj1r4cvm6b8w7j33z8"))))
(build-system gnu-build-system)
;; TODO: Split libavcodec and speex if possible. It looks like they can not
;; be split, there are references to both in files.
@@ -4298,15 +4300,16 @@ Linux-based operating system.")
ffmpeg ; libavcodec resampling plugin, a52 plugin
pulseaudio)) ; PulseAudio plugin
(native-inputs
- (list pkg-config))
+ (list autoconf automake libtool pkg-config))
(home-page "http://www.alsa-project.org/")
(synopsis "Plugins for the Advanced Linux Sound Architecture (ALSA)")
(description
- "The Advanced Linux Sound Architecture (ALSA) provides audio and
-MIDI functionality to the Linux-based operating system. This package enhances
ALSA
-by providing additional plugins which include: upmixing, downmixing, jackd and
-pulseaudio support for native alsa applications, format conversion (s16 to
a52), and
-external rate conversion.")
+ "@acronym{ALSA, Advanced Linux Sound Architecture} provides audio and
+@acronym{MIDI, Musical Instrument Digital Interface} functionality to the
+Linux-based operating system. This package enhances @acronym{ALSA} by
+providing additional plugins which include: upmixing, downmixing, jackd and
+pulseaudio support for native alsa applications, format conversion (s16 to
+a52), and external rate conversion.")
(license (list license:gpl2+
;; `rate/rate_samplerate.c': LGPL v2.1 or later.
license:lgpl2.1+))))