unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Ingo Ruhnke <grumbel@gmail.com>
To: 37589@debbugs.gnu.org
Subject: [bug#37589] [PATCH v2 25/25] gnu: xfce: Add xfce4-weather-plugin
Date: Thu,  3 Oct 2019 21:38:45 +0200	[thread overview]
Message-ID: <20191003193845.7108-25-grumbel@gmail.com> (raw)
In-Reply-To: <20191003193845.7108-1-grumbel@gmail.com>

* 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

  parent reply	other threads:[~2019-10-03 19:40 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-02 18:28 [bug#37589] [PATCH] gnu: Add xfce-goodies Ingo Ruhnke
2019-10-02 19:09 ` Danny Milosavljevic
2019-10-03 13:13   ` bug#37589: " Ingo Ruhnke
2019-10-03 13:48 ` [bug#37589] " Tobias Geerinckx-Rice via Guix-patches via
2019-10-03 19:38 ` [bug#37589] [PATCH v2 01/25] gnu: xfce: Add xfce4-wavelan-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 02/25] gnu: xfce: Add xfce4-verve-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 03/25] gnu: xfce: Add xfce4-timer-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 04/25] gnu: xfce: Add xfce4-systemload-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 05/25] gnu: xfce: Add xfce4-smartbookmark-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 06/25] gnu: xfce: Add xfce4-mount-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 07/25] gnu: xfce: Add xfce4-cpugraph-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 08/25] gnu: xfce: Add xfce4-eyes-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 09/25] gnu: xfce: Add xfce4-embed-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 10/25] gnu: xfce: Add xfce4-datetime-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 11/25] gnu: xfce: Add xfce4-calculator-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 12/25] gnu: xfce: Add xfce4-cpufreq-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 13/25] gnu: xfce: Add xfce4-diskperf-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 14/25] gnu: xfce: Add xfce4-fsguard-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 15/25] gnu: xfce: Add xfce4-mpc-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 16/25] gnu: xfce: Add xfce4-time-out-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 17/25] gnu: xfce: Add xfce4-genmon-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 18/25] gnu: xfce: Add xfce4-kbdleds-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 19/25] gnu: xfce: Add xfce4-netload-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 20/25] gnu: xfce: Add xfce4-stopwatch-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 21/25] gnu: xfce: Add xfce4-statusnotifier-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 22/25] gnu: xfce: Add xfce4-mailwatch-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 23/25] gnu: xfce: Add xfce4-equake-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 24/25] gnu: xfce: Add xfce4-places-plugin Ingo Ruhnke
2019-10-03 19:38   ` Ingo Ruhnke [this message]
2019-10-04 13:29   ` bug#37589: [PATCH v2 01/25] gnu: xfce: Add xfce4-wavelan-plugin Danny Milosavljevic

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191003193845.7108-25-grumbel@gmail.com \
    --to=grumbel@gmail.com \
    --cc=37589@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).