From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:53129) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iDwwF-0006Tl-B4 for guix-patches@gnu.org; Fri, 27 Sep 2019 16:34:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iDwwE-0006mb-6U for guix-patches@gnu.org; Fri, 27 Sep 2019 16:34:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39916) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iDwwE-0006mP-3V for guix-patches@gnu.org; Fri, 27 Sep 2019 16:34:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iDwwD-0002YP-QQ for guix-patches@gnu.org; Fri, 27 Sep 2019 16:34:01 -0400 Subject: [bug#37534] [PATCH] gnu: conky: Activate Pulseaudio support. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:53036) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iDwvI-0005yh-Cp for guix-patches@gnu.org; Fri, 27 Sep 2019 16:33:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iDwvE-0006Aj-Hh for guix-patches@gnu.org; Fri, 27 Sep 2019 16:33:04 -0400 Received: from sonic304-23.consmr.mail.ir2.yahoo.com ([77.238.179.148]:34728) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iDwvE-0006AT-Ax for guix-patches@gnu.org; Fri, 27 Sep 2019 16:33:00 -0400 Date: Fri, 27 Sep 2019 22:32:51 +0200 Message-Id: <20190927203251.30974-1-va511e@yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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" Reply-to: Vasile Dumitrascu via Guix-patches From: Vasile Dumitrascu via Guix-patches via To: 37534@debbugs.gnu.org Cc: Vasile Dumitrascu * gnu/packages/conky.scm (conky): [inputs] Add pulseaudio. --- gnu/packages/conky.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/conky.scm b/gnu/packages/conky.scm index 681feb6e43..046d132a9b 100644 --- a/gnu/packages/conky.scm +++ b/gnu/packages/conky.scm @@ -2,6 +2,7 @@ ;;; Copyright ?? 2015 Sini??a Bi??in ;;; Copyright ?? 2018, 2019 Tobias Geerinckx-Rice ;;; Copyright ?? 2019 Pierre Neidhardt +;;; Copyright ?? 2019 Vasile Dumitrascu ;;; ;;; This file is part of GNU Guix. ;;; @@ -31,6 +32,7 @@ #:use-module (gnu packages lua) #:use-module (gnu packages ncurses) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages pulseaudio) #:use-module (gnu packages xorg)) (define-public conky @@ -51,7 +53,8 @@ (arguments `(#:tests? #f ; there are no tests #:configure-flags - (list "-DRELEASE=true") + (list "-DRELEASE=true" + "-DBUILD_PULSEAUDIO=ON") #:phases (modify-phases %standard-phases (add-after 'unpack 'add-freetype-to-search-path @@ -76,6 +79,7 @@ ("libxext" ,libxext) ("libxft" ,libxft) ("libxinerama" ,libxinerama) + ("pulseaudio", pulseaudio) ("lua" ,lua) ("ncurses" ,ncurses) ("curl" ,curl))) -- 2.23.0