guix_mirror_bot pushed a commit to branch audio-team
in repository guix.
commit 1d842743d8e627e7e3b66682120d5ba74aa3c44e
Author: coopi <[email protected]>
AuthorDate: Thu Apr 16 11:11:02 2026 +0400
gnu: alsa-utils: Update to 1.2.15.2.
* gnu/packages/linux.scm (alsa-utils) [version]: Update to 1.2.15.2.
[source]: Switch to 'git-fetch'.
[description]: Reword.
Change-Id: If46ed827fe377c97bf25c3875be0e78842170a6f
Signed-off-by: Gabriel Wicki <[email protected]>
---
gnu/packages/linux.scm | 24 +++++++++++++-----------
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 0a799fcc08..0e70cc7f32 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -4199,15 +4199,16 @@ Linux-based operating system.")
(define-public alsa-utils
(package
(name "alsa-utils")
- (version "1.2.11")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "https://www.alsa-project.org/files/pub/utils/"
- name "-" version ".tar.bz2"))
- (sha256
- (base32
- "19r8qi6b7sd2p1mhxfqrp18wrgjw5s6rp5ygimb1w59zi0xcmils"))))
+ (version "1.2.15.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/alsa-project/alsa-utils")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1mlvzvz7npdvprlq1ff9pg3awsdvv3czv7wchfm96jflhks3pnsm"))))
(build-system gnu-build-system)
(arguments
(list
@@ -4231,8 +4232,9 @@ Linux-based operating system.")
(home-page "http://www.alsa-project.org/")
(synopsis "Utilities 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.")
+ "@acronym{ALSA, Advanced Linux Sound Architecture} provides audio and
+@acronym{MIDI, Musical Instrument Digital Interface} functionality to the
+Linux-based operating system.")
;; This is mostly GPLv2+ but a few files such as 'alsactl.c' are
;; GPLv2-only.