mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: gnome-maps: Update to 40.5.
* gnu/packages/geo.scm (gnome-maps): Update to 40.5. [source]: Fix the URI. [arguments]: Remove trailing #t. [inputs]: Add libhandy.
This commit is contained in:
parent
821fa7bd43
commit
d0b0912212
1 changed files with 7 additions and 7 deletions
|
@ -211,15 +211,15 @@ (define-public geos
|
|||
(define-public gnome-maps
|
||||
(package
|
||||
(name "gnome-maps")
|
||||
(version "3.38.5")
|
||||
(version "40.5")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
(version-major+minor version) "/"
|
||||
(version-major version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1llgzm2ni3iy31dznqkc81vadv0fpqgpz2l9zzrj5jshvyq0akgh"))))
|
||||
"02bdkmb3wyzfrbq726634v4g1hyh9za70cc2ivlbp7zc2n1jgp5c"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
`(#:glib-or-gtk? #t
|
||||
|
@ -229,14 +229,13 @@ (define-public gnome-maps
|
|||
;; Don't create 'icon-theme.cache'.
|
||||
(lambda _
|
||||
(substitute* "meson_post_install.py"
|
||||
(("gtk-update-icon-cache") "true"))
|
||||
#t))
|
||||
(("gtk-update-icon-cache") "true"))))
|
||||
(add-after 'unpack 'patch-dbus-service
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(substitute* "data/org.gnome.Maps.service.in"
|
||||
(("@pkgdatadir@/org.gnome.Maps")
|
||||
(string-append (assoc-ref outputs "out") "/bin/gnome-maps")))
|
||||
#t))
|
||||
(string-append (assoc-ref outputs "out")
|
||||
"/bin/gnome-maps")))))
|
||||
(add-after 'install 'wrap
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out"))
|
||||
|
@ -274,6 +273,7 @@ (define-public gnome-maps
|
|||
("folks" ,folks)
|
||||
("libchamplain" ,libchamplain)
|
||||
("libgee" ,libgee)
|
||||
("libhandy" ,libhandy)
|
||||
("libsecret" ,libsecret)
|
||||
("libsoup" ,libsoup)
|
||||
("libgweather" ,libgweather)
|
||||
|
|
Loading…
Reference in a new issue