emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#39243: closed ([PATCH] gnu: Add gnome-shell-extension-appindicator.)


From: GNU bug Tracking System
Subject: bug#39243: closed ([PATCH] gnu: Add gnome-shell-extension-appindicator.)
Date: Tue, 04 Feb 2020 23:13:02 +0000

Your message dated Wed, 05 Feb 2020 00:12:45 +0100
with message-id <address@hidden>
and subject line Re: [bug#39243] [PATCH] gnu: Add 
gnome-shell-extension-appindicator.
has caused the debbugs.gnu.org bug report #39243,
regarding [PATCH] gnu: Add gnome-shell-extension-appindicator.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
39243: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39243
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add gnome-shell-extension-appindicator. Date: Wed, 22 Jan 2020 20:38:30 +0100
* 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"
+                                            "/address@hidden")))
+          (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




--- End Message ---
--- Begin Message --- Subject: Re: [bug#39243] [PATCH] gnu: Add gnome-shell-extension-appindicator. Date: Wed, 05 Feb 2020 00:12:45 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux)
Giacomo Leidi <address@hidden> 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’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]