guix-commits
[Top][All Lists]
Advanced

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

02/15: gnu: gnome-shell-extension-dash-to-panel: Update to 56.


From: guix-commits
Subject: 02/15: gnu: gnome-shell-extension-dash-to-panel: Update to 56.
Date: Fri, 19 Jan 2024 18:39:29 -0500 (EST)

lilyp pushed a commit to branch gnome-team
in repository guix.

commit 369b5274d902df03cd55348a83e581ccd5a6a918
Author: Vivien Kraus <vivien@planete-kraus.eu>
AuthorDate: Tue Jan 16 22:31:43 2024 +0100

    gnu: gnome-shell-extension-dash-to-panel: Update to 56.
    
    * gnu/packages/gnome-xyz.scm (gnome-shell-extension-dash-to-panel): Update 
to
    56.
    [arguments]: Convert to list of G-Expressions.
    [native-inputs]: Add `(,glib "bin").
    [propagated-inputs]: Remove `(,glib "bin").
    
    Change-Id: I24a83766b750feb1004bbaf2f5badc9e21f1c30e
    Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
---
 gnu/packages/gnome-xyz.scm | 30 ++++++++++++++++--------------
 1 file changed, 16 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index c32dd3f3ee..d8be063846 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -953,7 +953,7 @@ certain elements or change animation speeds.")
 (define-public gnome-shell-extension-dash-to-panel
   (package
     (name "gnome-shell-extension-dash-to-panel")
-    (version "56")
+    (version "56") ;Compatible with GNOME 44
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -965,22 +965,24 @@ certain elements or change animation speeds.")
               (file-name (git-file-name name version))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f
-       #:make-flags (list (string-append "INSTALLBASE="
-                                         (assoc-ref %outputs "out")
-                                         "/share/gnome-shell/extensions")
-                          (string-append "VERSION="
-                                         ,(package-version
-                                           
gnome-shell-extension-dash-to-panel)))
+     (list
+      #:tests? #f
+      #:make-flags #~(list (string-append "INSTALLBASE="
+                                          #$output
+                                          "/share/gnome-shell/extensions")
+                           (string-append "VERSION="
+                                          #$version))
        #:phases
-       (modify-phases %standard-phases
-         (delete 'bootstrap)
-         (delete 'configure))))
+       #~(modify-phases %standard-phases
+           (delete 'bootstrap)
+           (delete 'configure))))
     (native-inputs
-     (list intltool pkg-config))
+     (list
+      `(,glib "bin")
+      intltool
+      pkg-config))
     (propagated-inputs
-     (list glib
-           `(,glib "bin")))
+     (list glib))
     (synopsis "Icon taskbar for GNOME Shell")
     (description "This extension moves the dash into the gnome main
 panel so that the application launchers and system tray are combined



reply via email to

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