From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52849) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iG6xR-00016I-VX for guix-patches@gnu.org; Thu, 03 Oct 2019 15:40:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iG6xP-0001Bc-Mv for guix-patches@gnu.org; Thu, 03 Oct 2019 15:40:13 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60697) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iG6xP-0001Ae-7M for guix-patches@gnu.org; Thu, 03 Oct 2019 15:40:11 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iG6xP-00013I-4D for guix-patches@gnu.org; Thu, 03 Oct 2019 15:40:11 -0400 Subject: [bug#37589] [PATCH v2 25/25] gnu: xfce: Add xfce4-weather-plugin Resent-Message-ID: From: Ingo Ruhnke Date: Thu, 3 Oct 2019 21:38:45 +0200 Message-Id: <20191003193845.7108-25-grumbel@gmail.com> In-Reply-To: <20191003193845.7108-1-grumbel@gmail.com> References: <20191003193845.7108-1-grumbel@gmail.com> MIME-Version: 1.0 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: 37589@debbugs.gnu.org * gnu/packages/xfce.scm: Add xfce4-weather-plugin. --- gnu/packages/xfce.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 57d1fec021..06a0726aee 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -63,6 +63,7 @@ #:use-module (gnu packages pcre) #:use-module (gnu packages popt) #:use-module (gnu packages pulseaudio) + #:use-module (gnu packages xml) #:use-module (gnu packages wm)) (define-public gtk-xfce-engine @@ -1942,3 +1943,33 @@ for the Xfce panel. It supports several features, such as: (description "This plugin is used to display stats from a wireless lan interface (signal state, signal quality, network name (SSID)).") (license bsd-2))) + +(define-public xfce4-weather-plugin + (package + (name "xfce4-weather-plugin") + (version "0.10.0") + (source (origin + (method url-fetch) + (uri (string-append "http://archive.xfce.org/src/panel-plugins/" + name "/" (version-major+minor version) "/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "0wlm80panxyn86l9qm3mbliqj7gkf2zyzak3w041zz9hg31a08s4")))) + (build-system gnu-build-system) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (inputs + `(("gtk+" ,gtk+) + ("libsoup" ,libsoup) + ("libxfce4ui" ,libxfce4ui) + ("libxml2" ,libxml2) + ("xfce4-panel" ,xfce4-panel))) + (home-page + "https://goodies.xfce.org/projects/panel-plugins/xfce4-weather-plugin") + (synopsis "Show information about local weather in the Xfce panel") + (description "This Xfce panel plugin shows information about your +local weather in the panel, using forecast data provided by the +@uref{https://met.no, Norwegian Meteorological Institute}.") + (license gpl2+))) -- 2.20.1