From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38926) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFJCB-0008P8-J3 for guix-patches@gnu.org; Tue, 01 Oct 2019 10:32:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFJCA-0008HD-8I for guix-patches@gnu.org; Tue, 01 Oct 2019 10:32:07 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53677) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iFJC8-0008FE-3u for guix-patches@gnu.org; Tue, 01 Oct 2019 10:32:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iFJC7-0000dA-V2 for guix-patches@gnu.org; Tue, 01 Oct 2019 10:32:03 -0400 Subject: [bug#37572] [PATCH 2/2] gnu: Add xfce4-volumed-pulse. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:45712) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFHPA-0006qR-Gc for guix-patches@gnu.org; Tue, 01 Oct 2019 08:37:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFHP6-00036h-G3 for guix-patches@gnu.org; Tue, 01 Oct 2019 08:37:24 -0400 Received: from mail-wm1-x341.google.com ([2a00:1450:4864:20::341]:34356) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iFHP2-00031q-Ul for guix-patches@gnu.org; Tue, 01 Oct 2019 08:37:18 -0400 Received: by mail-wm1-x341.google.com with SMTP id y135so2432362wmc.1 for ; Tue, 01 Oct 2019 05:37:16 -0700 (PDT) Received: from localhost ([2a02:908:4b16:36e0:a847:6595:1eb5:f2ec]) by smtp.gmail.com with ESMTPSA id o22sm41635531wra.96.2019.10.01.05.37.14 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 01 Oct 2019 05:37:14 -0700 (PDT) From: Ingo Ruhnke Date: Tue, 1 Oct 2019 14:37:13 +0200 Message-Id: <20191001123713.7769-2-grumbel@gmail.com> In-Reply-To: <20191001123713.7769-1-grumbel@gmail.com> References: <20191001123713.7769-1-grumbel@gmail.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" To: 37572@debbugs.gnu.org * gnu/packages/xfce.scm: Add xfce4-volumed-pulse. --- gnu/packages/xfce.scm | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index c71285c7bd..d8f67374fa 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -10,6 +10,7 @@ ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice ;;; Copyright © 2019 Pkill -9 ;;; Copyright © 2019 L p R n d n +;;; Copyright © 2019 Ingo Ruhnke ;;; ;;; This file is part of GNU Guix. ;;; @@ -61,7 +62,8 @@ #:use-module (gnu packages photo) #:use-module (gnu packages pcre) #:use-module (gnu packages popt) - #:use-module (gnu packages pulseaudio)) + #:use-module (gnu packages pulseaudio) + #:use-module (gnu packages wm)) (define-public gtk-xfce-engine (package @@ -1198,3 +1200,32 @@ A plugin for the Xfce panel is also available.") "Xfce Screensaver is a screen saver and locker that aims to have simple, sane, secure defaults and be well integrated with the Xfce desktop. ") (license gpl2+))) + +(define-public xfce4-volumed-pulse + (package + (name "xfce4-volumed-pulse") + (version "0.2.3") + (source (origin + (method url-fetch) + (uri (string-append "https://archive.xfce.org/src/apps/" + name "/" (version-major+minor version) "/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "1q639iwwj7q2plgz0wdgdbi5wkgaq177ca9rnnlrnbdmid5z5fqk")))) + (build-system glib-or-gtk-build-system) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (inputs + `(("xfconf" ,xfconf) + ("libnotify" ,libnotify) + ("pulseaudio" ,pulseaudio) + ("keybinder-3.0" ,keybinder-3.0) + ("gtk+" ,gtk+))) + (home-page "https://goodies.xfce.org/projects/applications/xfce4-volumed") + (synopsis "XFCE volume keys daemon") + (description + "This is a volume keys control daemon for Xfce Desktop environment. It controls + the volume using multimedia keys. It also provides volume change notifications.") + (license gpl3+))) -- 2.20.1