summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoopi <coopi@noreply.codeberg.org>2026-04-16 11:11:02 +0400
committerAndreas Enge <andreas@enge.fr>2026-06-27 12:03:14 +0200
commit0eb47c906e0f2a659d95b62fc506f38ca8dc3669 (patch)
tree6cf3d50d3a08904e78874c2a71c4f46d2b6f42c5
parent60c5449344cdc5775f9ddc8c7c7e14c934b58260 (diff)
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 <gabriel@erlikon.ch>
-rw-r--r--gnu/packages/linux.scm24
1 files changed, 13 insertions, 11 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 0a799fcc084..0e70cc7f327 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -4199,15 +4199,16 @@ Linux-based operating system.")
4199(define-public alsa-utils 4199(define-public alsa-utils
4200 (package 4200 (package
4201 (name "alsa-utils") 4201 (name "alsa-utils")
4202 (version "1.2.11") 4202 (version "1.2.15.2")
4203 (source (origin 4203 (source
4204 (method url-fetch) 4204 (origin
4205 (uri (string-append 4205 (method git-fetch)
4206 "https://www.alsa-project.org/files/pub/utils/" 4206 (uri (git-reference
4207 name "-" version ".tar.bz2")) 4207 (url "https://github.com/alsa-project/alsa-utils")
4208 (sha256 4208 (commit (string-append "v" version))))
4209 (base32 4209 (file-name (git-file-name name version))
4210 "19r8qi6b7sd2p1mhxfqrp18wrgjw5s6rp5ygimb1w59zi0xcmils")))) 4210 (sha256
4211 (base32 "1mlvzvz7npdvprlq1ff9pg3awsdvv3czv7wchfm96jflhks3pnsm"))))
4211 (build-system gnu-build-system) 4212 (build-system gnu-build-system)
4212 (arguments 4213 (arguments
4213 (list 4214 (list
@@ -4231,8 +4232,9 @@ Linux-based operating system.")
4231 (home-page "http://www.alsa-project.org/") 4232 (home-page "http://www.alsa-project.org/")
4232 (synopsis "Utilities for the Advanced Linux Sound Architecture (ALSA)") 4233 (synopsis "Utilities for the Advanced Linux Sound Architecture (ALSA)")
4233 (description 4234 (description
4234 "The Advanced Linux Sound Architecture (ALSA) provides audio and 4235 "@acronym{ALSA, Advanced Linux Sound Architecture} provides audio and
4235MIDI functionality to the Linux-based operating system.") 4236@acronym{MIDI, Musical Instrument Digital Interface} functionality to the
4237Linux-based operating system.")
4236 4238
4237 ;; This is mostly GPLv2+ but a few files such as 'alsactl.c' are 4239 ;; This is mostly GPLv2+ but a few files such as 'alsactl.c' are
4238 ;; GPLv2-only. 4240 ;; GPLv2-only.