diff options
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 066621037e..e01d0def8f 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -11,7 +11,7 @@ ;;; Copyright © 2016–2023 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018, 2020, 2024 Oleg Pykhalov <go.wigust@gmail.com> ;;; Copyright © 2018 okapi <okapi@firemail.cc> -;;; Copyright © 2018, 2020, 2022-2025 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2018, 2020, 2022-2025 Maxim Cournoyer <maxim@guixotic.coop> ;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org> ;;; Copyright © 2018 Brett Gilio <brettg@gnu.org> ;;; Copyright © 2018, 2019, 2022 Marius Bakke <marius@gnu.org> @@ -1922,7 +1922,7 @@ synthesis.") (define-public snapcast (package (name "snapcast") - (version "0.29.0") + (version "0.32.3") (source (origin (method git-fetch) (uri (git-reference @@ -1931,21 +1931,21 @@ synthesis.") (file-name (git-file-name name version)) (sha256 (base32 - "1960xp54vsndj9vvc03kx9kg9phdchdgrfghhvcp2b0nfq2qcqqm")))) + "06hllji1621f29g6ymbysi1vkndjsrwj63f5ph30f6kvv3c8sqx4")))) (build-system cmake-build-system) - (arguments - '(#:tests? #f)) ; no included tests + (arguments '(#:tests? #f)) ;no included tests (inputs - (list boost - libvorbis - soxr - alsa-lib + (list alsa-lib avahi - pulseaudio + boost + expat flac - opus)) - (native-inputs - (list pkg-config)) + libvorbis + openssl + opus + pulseaudio + soxr)) + (native-inputs (list pkg-config)) (home-page "https://github.com/badaix/snapcast") (synopsis "Synchronous multiroom audio player") (description @@ -6479,16 +6479,16 @@ workstations as well as consumer software such as music players.") (define-public redkite (package (name "redkite") - (version "1.3.1") ;marked unmaintained as of Oct. 2021 + (version "2.1.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/free-sm/redkite") + (url "https://github.com/quamplex/redkite") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1zb2k2a4m7z2ravqrjn8fq8lic20wbr2m8kja3p3113jsk7j9zvd")))) + (base32 "1xn7vnv7zszy0f1ynxd7qn0131w0gmk3rp3my4xjh143dhck4q4b")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) ;no tests included @@ -6496,13 +6496,13 @@ workstations as well as consumer software such as music players.") (list cairo)) (native-inputs (list pkg-config)) - (synopsis "Small GUI toolkit") + (synopsis "Lightweight graphics widget toolkit for embedded GUI") (description "Redkite is a small GUI toolkit developed in C++17 and inspired from other well known GUI toolkits such as Qt and GTK. It is minimal on purpose and is intended to be statically linked to applications, therefore satisfying any requirements they may have to be self contained, as is the case with audio plugins.") - (home-page "https://gitlab.com/geontime/redkite") + (home-page "https://github.com/quamplex/redkite") (license license:gpl3+))) (define-public carla |