guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: gnome-shell-extension-paperwm: Use new packa


From: guix-commits
Subject: branch master updated: gnu: gnome-shell-extension-paperwm: Use new package style.
Date: Sun, 21 Jan 2024 03:48:45 -0500

This is an automated email from the git hooks/post-receive script.

lilyp pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ed3aa00249 gnu: gnome-shell-extension-paperwm: Use new package style.
ed3aa00249 is described below

commit ed3aa002490867793d2d39dd66a6b7ee3b1d2bae
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sun Jan 21 09:44:33 2024 +0100

    gnu: gnome-shell-extension-paperwm: Use new package style.
    
    * gnu/packages/gnome-xyz.scm (gnome-shell-extension-paperwm)[arguments]:
    Convert to list of G-Expressions.
    [native-inputs]: Drop labels.
    
    Co-authored-by: Justin Veilleux <terramorpha@cock.li>
    Co-authored-by: Vivien Kraus <vivien@planete-kraus.eu>
---
 gnu/packages/gnome-xyz.scm | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 399d58ef1b..ae70d0be9f 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -1030,19 +1030,19 @@ It uses ES6 syntax and claims to be more actively 
maintained than others.")
                '(begin (delete-file "schemas/gschemas.compiled")))))
     (build-system copy-build-system)
     (arguments
-     '(#:install-plan
-       '(("." "share/gnome-shell/extensions/paperwm@paperwm.github.com"
-          #:include-regexp ("\\.js(on)?$" "\\.css$" "\\.ui$" "\\.png$"
-                            "\\.xml$" "\\.compiled$" "\\.svg$")))
-       #:phases
-       (modify-phases %standard-phases
-         (add-before 'install 'compile-schemas
-           (lambda _
-             (with-directory-excursion "schemas"
-               (invoke "make"))
-             #t)))))
+     (list
+      #:install-plan
+      #~'(("." "share/gnome-shell/extensions/paperwm@paperwm.github.com"
+           #:include-regexp ("\\.js(on)?$" "\\.css$" "\\.ui$" "\\.png$"
+                             "\\.xml$" "\\.compiled$" "\\.svg$")))
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'install 'compile-schemas
+            (lambda _
+              (with-directory-excursion "schemas"
+                (invoke "make")))))))
     (native-inputs
-     `(("glib:bin" ,glib "bin"))) ; for glib-compile-schemas
+     (list `(,glib "bin"))) ; for glib-compile-schemas
     (home-page "https://github.com/paperwm/PaperWM";)
     (synopsis "Tiled scrollable window management for GNOME Shell")
     (description "PaperWM is an experimental GNOME Shell extension providing



reply via email to

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