mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 11:09:41 -05:00
gnu: pulseaudio: Update to 15.0.
The 'bluez5' configuration options is removed to ease transformation of the package by users. It is auto-enabled by Meson based on the inputs available, so it's still enabled in this package. * gnu/packages/pulseaudio.scm (pulseaudio): Update to 15.0. [arguments]: Fix the 'oss-output' value and remove the 'bluez5' option. [inputs]: Add 'elogind'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
d2e85332dc
commit
431e641b83
1 changed files with 5 additions and 4 deletions
|
@ -51,6 +51,7 @@ (define-module (gnu packages pulseaudio)
|
|||
#:use-module (gnu packages boost)
|
||||
#:use-module (gnu packages check)
|
||||
#:use-module (gnu packages databases)
|
||||
#:use-module (gnu packages freedesktop)
|
||||
#:use-module (gnu packages glib)
|
||||
#:use-module (gnu packages gettext)
|
||||
#:use-module (gnu packages gnome)
|
||||
|
@ -192,7 +193,7 @@ (define-public libsamplerate
|
|||
(define-public pulseaudio
|
||||
(package
|
||||
(name "pulseaudio")
|
||||
(version "14.2")
|
||||
(version "15.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
|
@ -200,7 +201,7 @@ (define-public pulseaudio
|
|||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1wb6zyln49ca93rl9id8r873b2sb8l79122ck824kr0s5isgglvm"))
|
||||
"1851rg4h6sjwanvd294hn52z321rc6vbs4gbfrlw53597dx8h2x4"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
;; Disable console-kit support by default since it's deprecated
|
||||
|
@ -217,8 +218,7 @@ (define-public pulseaudio
|
|||
(arguments
|
||||
`(#:configure-flags
|
||||
(let ((out (assoc-ref %outputs "out")))
|
||||
(list "-Doss-output=disable"
|
||||
"-Dbluez5=true"
|
||||
(list "-Doss-output=disabled"
|
||||
"-Dlocalstatedir=/var"
|
||||
(string-append "-Dudevrulesdir="
|
||||
out "/lib/udev/rules.d")
|
||||
|
@ -256,6 +256,7 @@ (define-public pulseaudio
|
|||
("libxcb" ,libxcb)
|
||||
("libxtst" ,libxtst)
|
||||
|
||||
("elogind" ,elogind)
|
||||
("eudev" ,eudev))) ;for the detection of hardware audio devices
|
||||
(native-inputs
|
||||
`(("check" ,check)
|
||||
|
|
Loading…
Reference in a new issue