mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-06 11:00:19 +01:00
gnu: gnome-weather: Add wrapper to fix runtime failure.
Fixes <https://bugs.gnu.org/41057>. Reported by sirgazil <sirgazil@zoho.com>. * gnu/packages/gnome.scm (gnome-weather)[arguments]: Add #:glib-or-gtk?. Add phase to wrap the executable with GTK+ variables.
This commit is contained in:
parent
97a77eab09
commit
2b68ba721c
1 changed files with 12 additions and 2 deletions
|
@ -7768,7 +7768,8 @@ associations for GNOME.")
|
||||||
("gnome-desktop" ,gnome-desktop)
|
("gnome-desktop" ,gnome-desktop)
|
||||||
("libgweather" ,libgweather)))
|
("libgweather" ,libgweather)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:glib-or-gtk? #t
|
||||||
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'install 'fix-desktop-file
|
(add-after 'install 'fix-desktop-file
|
||||||
;; FIXME: "gapplication launch org.gnome.Weather" fails for some reason.
|
;; FIXME: "gapplication launch org.gnome.Weather" fails for some reason.
|
||||||
|
@ -7777,7 +7778,16 @@ associations for GNOME.")
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(applications (string-append out "/share/applications")))
|
(applications (string-append out "/share/applications")))
|
||||||
(substitute* (string-append applications "/org.gnome.Weather.desktop")
|
(substitute* (string-append applications "/org.gnome.Weather.desktop")
|
||||||
(("Exec=.*") "Exec=gnome-weather\n"))))))))
|
(("Exec=.*") "Exec=gnome-weather\n"))
|
||||||
|
#t)))
|
||||||
|
(add-after 'install 'wrap
|
||||||
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
(let ((out (assoc-ref outputs "out"))
|
||||||
|
(gi-typelib-path (getenv "GI_TYPELIB_PATH")))
|
||||||
|
;; GNOME Weather needs the typelib files of GTK+, Pango etc at runtime.
|
||||||
|
(wrap-program (string-append out "/bin/gnome-weather")
|
||||||
|
`("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)))
|
||||||
|
#t))))))
|
||||||
(synopsis "Weather monitoring for GNOME desktop")
|
(synopsis "Weather monitoring for GNOME desktop")
|
||||||
(description "GNOME Weather is a small application that allows you to
|
(description "GNOME Weather is a small application that allows you to
|
||||||
monitor the current weather conditions for your city, or anywhere in the
|
monitor the current weather conditions for your city, or anywhere in the
|
||||||
|
|
Loading…
Add table
Reference in a new issue