diff options
author | Brice Waegeneire <brice@waegenei.re> | 2025-07-02 13:15:15 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-07 14:16:32 +0200 |
commit | 52d6e27aafde14023ef38a8e68d51084bf5ca44c (patch) | |
tree | 410557efc521d8a799e7383a6a65642d24282737 /gnu/packages/pulseaudio.scm | |
parent | e0ddd4af4e0f6c694981350c1f6f0010260244c2 (diff) |
gnu: Update pulseaudio to 6.1.
* gnu/packages/pulseaudio.scm (pavucontrol): Update to 6.1.
[build-system]: Use meson-build-system.
[inputs]: Use gtkmm insted of gtkmm-3.
[native-inputs]: Add glib and lynx.
Change-Id: I650c62cf5288bc75c67c533c0abc45c44ef08932
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/pulseaudio.scm')
-rw-r--r-- | gnu/packages/pulseaudio.scm | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/gnu/packages/pulseaudio.scm b/gnu/packages/pulseaudio.scm index 7315bef579..374b84e199 100644 --- a/gnu/packages/pulseaudio.scm +++ b/gnu/packages/pulseaudio.scm @@ -14,7 +14,7 @@ ;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de> ;;; Copyright © 2020 Pierre Neidhardt <mail@ambrevar.xyz> ;;; Copyright © 2020 Marius Bakke <marius@gnu.org> -;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re> +;;; Copyright © 2021, 2025 Brice Waegeneire <brice@waegenei.re> ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2025 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; @@ -71,6 +71,7 @@ #:use-module (gnu packages python-xyz) #:use-module (gnu packages python-web) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages web-browsers) #:use-module (gnu packages xiph) #:use-module (gnu packages xml) #:use-module (gnu packages xorg)) @@ -263,25 +264,27 @@ sound server.") (define-public pavucontrol (package (name "pavucontrol") - (version "5.0") - (source (origin - (method url-fetch) - (uri (string-append - "https://freedesktop.org/software/pulseaudio/pavucontrol/pavucontrol-" - version - ".tar.xz")) - (sha256 - (base32 - "0yjfiwpaydh5s8v3l78dhwhbsmcl1xsq3p8rvz80m9zinp1p4ayf")))) - (build-system glib-or-gtk-build-system) + (version "6.1") + (source + (origin + (method url-fetch) + (uri (string-append + "https://freedesktop.org/software/pulseaudio/pavucontrol/pavucontrol-" + version ".tar.xz")) + (sha256 + (base32 "0pa19v96rvkvbb32hzbzasc7xx5gnygbf7qf4x6a1bwf130n3khd")))) + (build-system meson-build-system) (inputs (list adwaita-icon-theme ;hard-coded theme - gtkmm-3 + gtkmm json-glib libcanberra pulseaudio)) (native-inputs - (list intltool pkg-config)) + (list intltool + `(,glib "bin") + lynx + pkg-config)) (home-page "https://www.freedesktop.org/software/pulseaudio/pavucontrol/") (synopsis "PulseAudio volume control") (description |