mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: pulseaudio: Add optional X11 inputs.
* gnu/packages/pulseaudio.scm (pulseaudio)[inputs]: Add libxcb, libice, libsm, and libxtst. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
52efb4adef
commit
531b63eba7
1 changed files with 9 additions and 1 deletions
|
@ -50,7 +50,8 @@ (define-module (gnu packages pulseaudio)
|
|||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages python-web)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages xiph))
|
||||
#:use-module (gnu packages xiph)
|
||||
#:use-module (gnu packages xorg))
|
||||
|
||||
(define-public libsndfile
|
||||
(package
|
||||
|
@ -182,6 +183,13 @@ (define-public pulseaudio
|
|||
("libltdl" ,libltdl)
|
||||
("fftwf" ,fftwf)
|
||||
("avahi" ,avahi)
|
||||
|
||||
;; For the optional X11 modules.
|
||||
("libice" ,libice)
|
||||
("libsm" ,libsm)
|
||||
("libxcb" ,libxcb)
|
||||
("libxtst" ,libxtst)
|
||||
|
||||
("eudev" ,eudev))) ;for the detection of hardware audio devices
|
||||
(native-inputs
|
||||
`(("check" ,check)
|
||||
|
|
Loading…
Reference in a new issue