me
/
guix
Archived
1
0
Fork 0

gnu: pulseaudio: Add jack input.

Depending on jack allows building the jack-sink and jack-source modules for
routing the audio through the jack server.

* gnu/packages/pulseaudio.scm (pulseaudio)[inputs]: Add jack-1.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
master
Pierre Langlois 2018-06-24 12:13:56 +01:00 committed by Marius Bakke
parent f579af3d3e
commit d5e60a2a93
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,7 @@
;;; Copyright © 2017 Leo Famulari <leo@famulari.name> ;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at> ;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Pierre Langlois <pierre.langlois@gmx.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -31,6 +32,7 @@
#:use-module (guix build-system python) #:use-module (guix build-system python)
#:use-module (gnu packages) #:use-module (gnu packages)
#:use-module (gnu packages algebra) #:use-module (gnu packages algebra)
#:use-module (gnu packages audio)
#:use-module (gnu packages autotools) #:use-module (gnu packages autotools)
#:use-module (gnu packages avahi) #:use-module (gnu packages avahi)
#:use-module (gnu packages check) #:use-module (gnu packages check)
@ -169,6 +171,7 @@ rates.")
("speex" ,speex) ("speex" ,speex)
("libsndfile" ,libsndfile) ("libsndfile" ,libsndfile)
("libsamplerate" ,libsamplerate) ("libsamplerate" ,libsamplerate)
("jack" ,jack-1) ; For routing the output to jack.
("dbus" ,dbus) ("dbus" ,dbus)
("glib" ,glib) ("glib" ,glib)
("intltool" ,intltool) ("intltool" ,intltool)