gnu: gnome-characters: Update to 40.0.

* gnu/packages/gnome.scm (gnome-characters): Update to 40.0.
[source]: Fix the URI.
[arguments]: Remove a trailing #t.
[inputs]: Add libhandy.
This commit is contained in:
Mathieu Othacehe 2021-09-24 19:24:32 +00:00
parent b8aa7bf67e
commit ef67f851a0
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -2058,16 +2058,16 @@ to other formats.")
(define-public gnome-characters (define-public gnome-characters
(package (package
(name "gnome-characters") (name "gnome-characters")
(version "3.30.0") (version "40.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://gnome/sources/" (uri (string-append "mirror://gnome/sources/"
"gnome-characters/" (version-major+minor version) "gnome-characters/" (version-major version)
"/gnome-characters-" version ".tar.xz")) "/gnome-characters-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"08cwz39iwgsyyb2wqhb8vfbmh1cwfkgfiy7adp08w7rwqi99x3dp")))) "0z2xa4w921bzpzj6gv88pvbrijcnnwni6jxynwz0ybaravyzaqha"))))
(build-system meson-build-system) (build-system meson-build-system)
(arguments (arguments
`(#:glib-or-gtk? #t `(#:glib-or-gtk? #t
@ -2079,8 +2079,7 @@ to other formats.")
(wrap-program (string-append (assoc-ref outputs "out") (wrap-program (string-append (assoc-ref outputs "out")
"/bin/gnome-characters") "/bin/gnome-characters")
`("GI_TYPELIB_PATH" ":" prefix `("GI_TYPELIB_PATH" ":" prefix
(,(getenv "GI_TYPELIB_PATH")))) (,(getenv "GI_TYPELIB_PATH")))))))))
#t)))))
(native-inputs (native-inputs
`(("gettext" ,gettext-minimal) `(("gettext" ,gettext-minimal)
("glib:bin" ,glib "bin") ("glib:bin" ,glib "bin")
@ -2090,6 +2089,7 @@ to other formats.")
(inputs (inputs
`(("gjs" ,gjs) `(("gjs" ,gjs)
("gtk+" ,gtk+) ("gtk+" ,gtk+)
("libhandy" ,libhandy)
("libunistring" ,libunistring) ("libunistring" ,libunistring)
("gnome-desktop" ,gnome-desktop))) ("gnome-desktop" ,gnome-desktop)))
(home-page "https://wiki.gnome.org/Apps/CharacterMap") (home-page "https://wiki.gnome.org/Apps/CharacterMap")