From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40803) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1feHrO-00017l-Vf for guix-patches@gnu.org; Sat, 14 Jul 2018 06:33:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1feHrL-0007LI-RT for guix-patches@gnu.org; Sat, 14 Jul 2018 06:33:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51608) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1feHrL-0007L3-L4 for guix-patches@gnu.org; Sat, 14 Jul 2018 06:33:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1feHrL-0000k0-BF for guix-patches@gnu.org; Sat, 14 Jul 2018 06:33:03 -0400 Subject: [bug#32152] [PATCH] gnu: pulseaudio: Add jack input. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40563) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1feHqX-00014y-Bj for guix-patches@gnu.org; Sat, 14 Jul 2018 06:32:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1feHqU-0006m9-20 for guix-patches@gnu.org; Sat, 14 Jul 2018 06:32:13 -0400 Received: from mout.gmx.net ([212.227.17.21]:56327) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1feHqT-0006k1-K4 for guix-patches@gnu.org; Sat, 14 Jul 2018 06:32:09 -0400 From: Pierre Langlois Date: Sat, 14 Jul 2018 11:32:02 +0100 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 32152@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello Guix! Here's a patch that adds jack as an input to pulseaudio. It allows building the jack modules to route pulseaudio to jack. Since a lot of things depend on pulseaudio, would this typically go to a staging branch? Thanks a lot, Pierre --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-pulseaudio-Add-jack-input.patch Content-Transfer-Encoding: quoted-printable >From c0da661aa510a4b727e629627e6a441edf598cbd Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Sun, 24 Jun 2018 12:13:56 +0100 Subject: [PATCH] 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. --- gnu/packages/pulseaudio.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/pulseaudio.scm b/gnu/packages/pulseaudio.scm index bac92eafa..dfb33a4fd 100644 --- a/gnu/packages/pulseaudio.scm +++ b/gnu/packages/pulseaudio.scm @@ -7,6 +7,7 @@ ;;; Copyright =C2=A9 2017 Leo Famulari ;;; Copyright =C2=A9 2017 Stefan Reich=C3=B6r ;;; Copyright =C2=A9 2017 Tobias Geerinckx-Rice +;;; Copyright =C2=A9 2018 Pierre Langlois ;;; ;;; This file is part of GNU Guix. ;;; @@ -31,6 +32,7 @@ #:use-module (guix build-system python) #:use-module (gnu packages) #:use-module (gnu packages algebra) + #:use-module (gnu packages audio) #:use-module (gnu packages autotools) #:use-module (gnu packages avahi) #:use-module (gnu packages check) @@ -177,6 +179,7 @@ rates.") ("speex" ,speex) ("libsndfile" ,libsndfile) ("libsamplerate" ,libsamplerate) + ("jack" ,jack-1) ; For routing the output to jack. ("dbus" ,dbus) ("glib" ,glib) ("intltool" ,intltool) --=20 2.18.0 --=-=-=--