GNU bug report logs - #57991
[PATCH] gnu: Add gnome-shell-extension-unite-shell

Previous Next

Package: guix-patches;

Reported by: Trevor Richards <trev <at> trevdev.ca>

Date: Thu, 22 Sep 2022 00:24:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#57991: closed ([PATCH] gnu: Add gnome-shell-extension-unite-shell)
Date: Wed, 28 Sep 2022 21:23:02 +0000
[Message part 1 (text/plain, inline)]
Your message dated Wed, 28 Sep 2022 23:22:04 +0200
with message-id <87pmffdwjn.fsf <at> gnu.org>
and subject line Re: bug#57991: [PATCH] gnu: Add gnome-shell-extension-unite-shell
has caused the debbugs.gnu.org bug report #57991,
regarding [PATCH] gnu: Add gnome-shell-extension-unite-shell
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
57991: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57991
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Trevor Richards <trev <at> trevdev.ca>
To: Guix Patches <guix-patches <at> gnu.org>
Subject: [PATCH] gnu: Add gnome-shell-extension-unite-shell
Date: Wed, 21 Sep 2022 17:20:35 -0700
---
 gnu/packages/gnome-xyz.scm | 41 +++++++++++++++++++++++++++++++++++++-
 1 file changed, 40 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 4d53593944..7ec693851c 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -69,7 +69,8 @@ (define-module (gnu packages gnome-xyz)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages ruby)
   #:use-module (gnu packages web)
-  #:use-module (gnu packages xml))
+  #:use-module (gnu packages xml)
+  #:use-module (gnu packages xorg))
 
 (define-public arc-icon-theme
   (package
@@ -303,6 +304,44 @@ (define-public gnome-plots
 takes advantage of modern hardware using OpenGL.")
     (license license:gpl3+)))
 
+(define-public gnome-shell-extension-unite-shell
+  (package
+    (name "gnome-shell-extension-unite-shell")
+    (version "65")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/hardpixel/unite-shell")
+                    (commit "127edac6396b89cdedec003bdff38820e6a0f91f")))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1lzhf7hlvzg62nxjfpv265315qibcjz5dv08dzpfckf2dx68nab4"))))
+    (build-system copy-build-system)
+    (native-inputs (list `(,glib "bin") gettext-minimal))
+    (inputs (list xprop))
+    (arguments
+     (list #:install-plan ''(("./unite <at> hardpixel.eu"
+                              "share/gnome-shell/extensions/unite <at> hardpixel.eu"))
+           #:phases #~(modify-phases %standard-phases
+                        (add-after 'unpack 'patch-xprop-bin
+                          (lambda _
+                            (substitute* "unite <at> hardpixel.eu/window.js"
+                              (("xprop")
+                               (string-append #$(this-package-input "xprop")
+                                              "/bin/xprop")))))
+                        (add-before 'install 'compile-schemas
+                          (lambda _
+                            (with-directory-excursion "unite <at> hardpixel.eu/schemas"
+                              (invoke "glib-compile-schemas" ".")))))))
+    (home-page "https://github.com/hardpixel/unite-shell")
+    (synopsis "Top panel and window decoration extension for GNOME Shell")
+    (description
+     "Unite is a GNOME Shell extension which makes a few layout
+tweaks to the top panel and removes window decorations to make it look like
+Ubuntu Unity Shell.")
+    (license license:gpl3)))
+
 (define-public gnome-shell-extension-appindicator
   (package
     (name "gnome-shell-extension-appindicator")
-- 
2.37.3



[Message part 3 (message/rfc822, inline)]
From: Ludovic Courtès <ludo <at> gnu.org>
To: Trevor Richards <trev <at> trevdev.ca>
Cc: 57991-done <at> debbugs.gnu.org
Subject: Re: bug#57991: [PATCH] gnu: Add gnome-shell-extension-unite-shell
Date: Wed, 28 Sep 2022 23:22:04 +0200
Hi,

Trevor Richards <trev <at> trevdev.ca> skribis:

> ---
>  gnu/packages/gnome-xyz.scm | 41 +++++++++++++++++++++++++++++++++++++-
>  1 file changed, 40 insertions(+), 1 deletion(-)

I augmented the commit log and applied it.

> +    (home-page "https://github.com/hardpixel/unite-shell")
> +    (synopsis "Top panel and window decoration extension for GNOME Shell")
> +    (description
> +     "Unite is a GNOME Shell extension which makes a few layout
> +tweaks to the top panel and removes window decorations to make it look like
> +Ubuntu Unity Shell.")
> +    (license license:gpl3)))

I wondered whether that really was GPLv3-only, and ‘README.md’ suggests
it is.

Thanks,
Ludo’.


This bug report was last modified 2 years and 237 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.