all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#39243] [PATCH] gnu: Add gnome-shell-extension-appindicator.
@ 2020-01-22 19:38 Giacomo Leidi
  2020-02-04 23:12 ` bug#39243: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Giacomo Leidi @ 2020-01-22 19:38 UTC (permalink / raw)
  To: 39243; +Cc: Giacomo Leidi

* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator): New variable.
---
 gnu/packages/gnome-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 0fc721b7d3..2d4fc25593 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -114,6 +114,40 @@ which haven't been updated for some years.  The new app icons are ported from
 the Obsidian icon theme.")
     (license license:gpl3)))
 
+(define-public gnome-shell-extension-appindicator
+  (package
+    (name "gnome-shell-extension-appindicator")
+    (version "30")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url
+                     "https://github.com/ubuntu/gnome-shell-extension-appindicator.git")
+                    (commit (string-append "v" version))))
+              (sha256
+               (base32
+                "1fjhx23jqwv3d0smwhnjvc35gqhwk9p5f96ic22pfax653cn5vh8"))
+              (file-name (git-file-name name version))))
+    (build-system trivial-build-system)
+    (arguments
+     '(#:modules ((guix build utils))
+       #:builder
+       (begin
+         (use-modules (guix build utils))
+	 (let* ((source (assoc-ref %build-inputs "source"))
+                (install-dir (string-append (assoc-ref %outputs "out")
+                                            "/share/gnome-shell/extensions"
+                                            "/appindicatorsupport@rgcjonas.gmail.com")))
+	   (mkdir-p install-dir)
+	   (copy-recursively source install-dir)
+           #t))))
+    (synopsis "Adds KStatusNotifierItem support to GNOME Shell")
+    (description "This extension integrates Ubuntu AppIndicators
+and KStatusNotifierItems (KDE's successor of the systray) into
+GNOME Shell.")
+    (home-page "https://github.com/ubuntu/gnome-shell-extension-appindicator/")
+    (license license:gpl2+)))
+
 (define-public gnome-shell-extension-dash-to-dock
   (package
     (name "gnome-shell-extension-dash-to-dock")
-- 
2.25.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#39243: [PATCH] gnu: Add gnome-shell-extension-appindicator.
  2020-01-22 19:38 [bug#39243] [PATCH] gnu: Add gnome-shell-extension-appindicator Giacomo Leidi
@ 2020-02-04 23:12 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2020-02-04 23:12 UTC (permalink / raw)
  To: Giacomo Leidi; +Cc: 39243-done

Giacomo Leidi <goodoldpaul@autistici.org> skribis:

> * gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator): New variable.

I untabified the code (as reported by ‘guix lint’) and applied.

Thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-02-04 23:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-22 19:38 [bug#39243] [PATCH] gnu: Add gnome-shell-extension-appindicator Giacomo Leidi
2020-02-04 23:12 ` bug#39243: " Ludovic Courtès

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.