summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoopi <coopi@noreply.codeberg.org>2026-04-16 11:08:59 +0400
committerAndreas Enge <andreas@enge.fr>2026-06-27 12:03:13 +0200
commit77443a4b8d98ecf078562e44af41d3f9bf47eaa6 (patch)
treeeb53f41073ea8f60987d81f8bebb5f179d0b39f7
parentb6f39b3932599dcfa3870c9a97adea7783ab29b6 (diff)
gnu: alsa-topology-conf: Update to 1.2.5.1.
* gnu/packages/linux.scm (alsa-topology-conf) [version]: Update to 1.2.5.1. [source]: Switch to 'git-fetch'. [description]: Reword. Change-Id: I1b227af1e9e41a1cb53d014f758525d4e2f9c5b1 Signed-off-by: Gabriel Wicki <gabriel@erlikon.ch>
-rw-r--r--gnu/packages/linux.scm23
1 files changed, 12 insertions, 11 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 3a668982519..b02f15c9b51 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -4122,15 +4122,16 @@ routing for specific audio hardware.")
4122(define-public alsa-topology-conf 4122(define-public alsa-topology-conf
4123 (package 4123 (package
4124 (name "alsa-topology-conf") 4124 (name "alsa-topology-conf")
4125 (version "1.2.4") 4125 (version "1.2.5.1")
4126 (source (origin 4126 (source
4127 (method url-fetch) 4127 (origin
4128 (uri (string-append 4128 (method git-fetch)
4129 "ftp://ftp.alsa-project.org/pub/lib/" name "-" 4129 (uri (git-reference
4130 version ".tar.bz2")) 4130 (url "https://github.com/alsa-project/alsa-topology-conf")
4131 (sha256 4131 (commit (string-append "v" version))))
4132 (base32 4132 (file-name (git-file-name name version))
4133 "01zdg6q4s6d01k39z96wi4vbhrfw1i2g4yi5dijwfk6a5vjfdq2m")))) 4133 (sha256
4134 (base32 "150065nc5ksrxcay0ia0f8ad2s0gpp3xgn7gc5xsyf0k5dwdby49"))))
4134 (build-system copy-build-system) 4135 (build-system copy-build-system)
4135 (arguments 4136 (arguments
4136 '(#:install-plan 4137 '(#:install-plan
@@ -4138,8 +4139,8 @@ routing for specific audio hardware.")
4138 (home-page "https://www.alsa-project.org/wiki/Main_Page") 4139 (home-page "https://www.alsa-project.org/wiki/Main_Page")
4139 (synopsis "The Advanced Linux Sound Architecture libraries") 4140 (synopsis "The Advanced Linux Sound Architecture libraries")
4140 (description 4141 (description
4141 "This package contains Advanced Linux Sound Architecture topology 4142 "This package contains @acronym{ALSA, Advanced Linux Sound Architecture}
4142configuration files that can be used for specific audio hardware.") 4143topology configuration files that can be used for specific audio hardware.")
4143 (license license:bsd-3))) 4144 (license license:bsd-3)))
4144 4145
4145(define-public alsa-lib 4146(define-public alsa-lib