From 5fa60c3e8196d1453ed74cc2fb1d2b707532d55c Mon Sep 17 00:00:00 2001 From: terramorpha Date: Thu, 18 Jan 2024 16:36:26 -0500 Subject: gnu: gnome-shell-extension-paperwm: Update to 44.17.0. * gnu/packages/gnome-xyz.scm (gnome-shell-extension-paperwm): Update to 44.17.0. Change-Id: I3d9923ccfdb35b9952c24d8dd3d064c3cba7b8c2 Signed-off-by: Liliana Marie Prikler --- gnu/packages/gnome-xyz.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gnu/packages/gnome-xyz.scm') diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 6b66658215..399d58ef1b 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -13,7 +13,7 @@ ;;; Copyright © 2021, 2022 Vinicius Monego ;;; Copyright © 2021 Guillaume Le Vaillant ;;; Copyright © 2021 Songlin Jiang -;;; Copyright © 2021, 2022 Justin Veilleux +;;; Copyright © 2021, 2022, 2024 Justin Veilleux ;;; Copyright © 2021 Attila Lendvai ;;; Copyright © 2021 Charles Jackson ;;; Copyright © 2022 Eric Bavier @@ -1016,24 +1016,24 @@ It uses ES6 syntax and claims to be more actively maintained than others.") (define-public gnome-shell-extension-paperwm (package (name "gnome-shell-extension-paperwm") - (version "36.0") + (version "44.17.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/paperwm/PaperWM") - (commit version))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "1ssnabwxrns36c61ppspjkr9i3qifv08pf2jpwl7cjv3pvyn4kly")) + "1d91k9qih81wckqf6554kf8grv6q61rkk4g776g0ijpmf35ljdin")) (snippet '(begin (delete-file "schemas/gschemas.compiled"))))) (build-system copy-build-system) (arguments '(#:install-plan - '(("." "share/gnome-shell/extensions/paperwm@hedning:matrix.org" + '(("." "share/gnome-shell/extensions/paperwm@paperwm.github.com" #:include-regexp ("\\.js(on)?$" "\\.css$" "\\.ui$" "\\.png$" - "\\.xml$" "\\.compiled$"))) + "\\.xml$" "\\.compiled$" "\\.svg$"))) #:phases (modify-phases %standard-phases (add-before 'install 'compile-schemas -- cgit v1.2.3 From ed3aa002490867793d2d39dd66a6b7ee3b1d2bae Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Sun, 21 Jan 2024 09:44:33 +0100 Subject: 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 Co-authored-by: Vivien Kraus --- gnu/packages/gnome-xyz.scm | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'gnu/packages/gnome-xyz.scm') 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 -- cgit v1.2.3