guix_mirror_bot pushed a commit to branch audio-team
in repository guix.
commit 6884f3e9036dd0991e16c48e81eea008249cf37f
Author: SilverlightningY <[email protected]>
AuthorDate: Mon May 4 19:16:47 2026 +0200
gnu: opus: Update to version 1.6.1.
* gnu/packages/xiph.scm (opus): Update to version 1.6.1. Format with
guix style.
[properties]: Format with guix style.
Change-Id: Ie28566720a4f86b8f959e8f9282a2fbed24daa6c
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/xiph.scm | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index fa2640b917..5a3d351a2b 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -368,14 +368,14 @@ ogginfo, to obtain information (tags, bitrate, length,
etc.) about
(define-public opus
(package
(name "opus")
- (version "1.5.2")
- (source (origin
- (method url-fetch)
- (uri (string-append
"https://downloads.xiph.org/releases/opus/opus-"
- version ".tar.gz"))
- (sha256
- (base32
- "1qbwk9zyhbk185ly8xjq6hwmibair53vx363h80b4bwzigvx5hb5"))))
+ (version "1.6.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://downloads.xiph.org/releases/opus/opus-"
+ version ".tar.gz"))
+ (sha256
+ (base32 "188i4ibr80az4217q04z22cyrfv4xmk29cqmvy22bsbv429vbz3g"))))
(build-system gnu-build-system)
(arguments
'(#:configure-flags '("--disable-static")))
@@ -387,8 +387,7 @@ but is also intended for storage and streaming
applications. It is
standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which
incorporated technology from Skype's SILK codec and Xiph.Org's CELT codec.")
;; This package shows a sizable speed increase when tuned.
- (properties `((tunable? . #t)
- (lint-hidden-cpe-vendors . ("discordjs"))))
+ (properties `((tunable? . #t) (lint-hidden-cpe-vendors "discordjs")))
(license license:bsd-3)
(home-page "https://www.opus-codec.org")))