guix-commits
[Top][All Lists]
Advanced

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

113/182: gnu: Add gnome-shell-extension-noannoyance.


From: guix-commits
Subject: 113/182: gnu: Add gnome-shell-extension-noannoyance.
Date: Fri, 15 Nov 2019 00:01:50 -0500 (EST)

kkebreau pushed a commit to branch wip-gnome-updates
in repository guix.

commit f9023dd4983f511f237c4b0a17db924ed1ba5a87
Author: Leo Prikler <address@hidden>
Date:   Thu Nov 7 10:22:02 2019 +0100

    gnu: Add gnome-shell-extension-noannoyance.
    
    * gnu/packages/gnome-xyz: (gnome-shell-extension-noannoyance): New variable.
    
    Signed-off-by: Mathieu Othacehe <address@hidden>
---
 gnu/packages/gnome-xyz.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 3131ed6..8c45b55 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -95,3 +95,34 @@ overview, transforming it into a dock for easier application 
launching and
 faster window switching.")
     (home-page "https://micheleg.github.io/dash-to-dock/";)
     (license license:gpl2+)))
+
+(define-public gnome-shell-extension-noannoyance
+  (package
+    (name "gnome-shell-extension-noannoyance")
+    (version "5")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/BjoernDaase/noannoyance.git";)
+                    (commit "e37b5b3c31f577b4698bc6659bc9fec5ea9ac5d4")))
+              (sha256
+               (base32
+                "0fa8l3xlh8kbq07y4385wpb908zm6x53z81q16xlmin97dln32hh"))
+              (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 ((dst (string-append
+                     (assoc-ref %outputs "out")
+                     "/share/gnome-shell/extensions/"
+                     "address@hidden")))
+           (mkdir-p dst)
+           (copy-recursively (assoc-ref %build-inputs "source") dst)))))
+    (synopsis "Removes 'Window is ready' annotation")
+    (description "One of the many extensions, that remove this message.
+It uses ES6 syntax and claims to be more actively maintained than others.")
+    (home-page "https://extensions.gnome.org/extension/2182/noannoyance/";)
+    (license license:gpl2)))



reply via email to

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