me
/
guix
Archived
1
0
Fork 0

gnu: gnome-shell-extension-burn-my-windows: Update to 40.

* gnu/packages/gnome-xyz.scm (gnome-shell-extension-burn-my-windows): Update
to 40.
[arguments]: Convert to list of G-Expressions.

Change-Id: Ib9551096437aeea0ff56e5e1ea6371ab72d61b02
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
master
Vivien Kraus 2024-01-17 22:57:17 +01:00 committed by Liliana Marie Prikler
parent b086d1ba9e
commit 839388b033
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 18 additions and 17 deletions

View File

@ -1183,7 +1183,7 @@ position when the mouse is moved rapidly.")
(define-public gnome-shell-extension-burn-my-windows
(package
(name "gnome-shell-extension-burn-my-windows")
(version "22")
(version "40")
(source
(origin
(method git-fetch)
@ -1192,25 +1192,26 @@ position when the mouse is moved rapidly.")
(commit (string-append "v" version))))
(sha256
(base32
"185xrf330d9bflmk0l61cnzlylnppb2v4yz6v6ygkk4zpwyil8np"))
"16n6ilszdn67835clqlr4flna69x9k00k5qrm55765dv2ny9jdcq"))
(file-name (git-file-name name version))))
(build-system copy-build-system)
(arguments
`(#:install-plan
'(("." ,(string-append
"share/gnome-shell/extensions/"
"burn-my-windows@schneegans.github.com")
#:include-regexp ("\\.js(on)?$" "\\.css$" "\\.ui$" "\\.png$"
"\\.xml$" "\\.compiled$" "\\.gresource$")))
#:phases
(modify-phases %standard-phases
(add-before 'install 'compile-resources
(lambda _
(invoke "make" "resources/burn-my-windows.gresource")))
(add-before 'install 'compile-schemas
(lambda _
(with-directory-excursion "schemas"
(invoke "glib-compile-schemas" ".")))))))
(list
#:install-plan
#~'(("." #$(string-append
"share/gnome-shell/extensions/"
"burn-my-windows@schneegans.github.com")
#:include-regexp ("\\.js(on)?$" "\\.css$" "\\.ui$" "\\.png$"
"\\.xml$" "\\.compiled$" "\\.gresource$")))
#:phases
#~(modify-phases %standard-phases
(add-before 'install 'compile-resources
(lambda _
(invoke "make" "resources/burn-my-windows.gresource")))
(add-before 'install 'compile-schemas
(lambda _
(with-directory-excursion "schemas"
(invoke "glib-compile-schemas" ".")))))))
(native-inputs
(list `(,glib "bin"))) ; for glib-compile-resources
(home-page "https://github.com/Schneegans/Burn-My-Windows")