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 23/25] gnu: xfce: Add xfce4-equake-plugin
Date: Thu,  3 Oct 2019 21:38:43 +0200	[thread overview]
Message-ID: <20191003193845.7108-23-grumbel@gmail.com> (raw)
In-Reply-To: <20191003193845.7108-1-grumbel@gmail.com>

* gnu/packages/xfce.scm: Add xfce4-equake-plugin.
---
 gnu/packages/xfce.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index cbd8a54068..1c454341f9 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -1288,6 +1288,34 @@ core or CPU.")
 watch your every step.")
     (license gpl2+)))
 
+(define-public xfce4-equake-plugin
+   (package
+   (name "xfce4-equake-plugin")
+   (version "1.3.8")
+    (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
+                "09b9k0n5xm115k44x74w4ad0xqklilyfh0hglsps7zj97pd7a5a3"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("intltool" ,intltool)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("gtk+-2" ,gtk+-2)
+       ("libxfce4ui" ,libxfce4ui)
+       ("xfce4-panel" ,xfce4-panel)))
+    (home-page
+     "https://goodies.xfce.org/projects/panel-plugins/xfce4-equake-plugin")
+    (synopsis "Earthquake monitor for the Xfce panel")
+    (description "Equake is a panel plugin for the XFCE desktop
+environment.  Equake monitors earthquakes and will display an update
+each time a new earthquake occurs.")
+    (license gpl2+)))
+
 (define-public xfce4-datetime-plugin
   (package
    (name "xfce4-datetime-plugin")
-- 
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   ` Ingo Ruhnke [this message]
2019-10-03 19:38   ` [bug#37589] [PATCH v2 24/25] gnu: xfce: Add xfce4-places-plugin Ingo Ruhnke
2019-10-03 19:38   ` [bug#37589] [PATCH v2 25/25] gnu: xfce: Add xfce4-weather-plugin Ingo Ruhnke
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-23-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).