3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: ghex: Update to 3.18.4.

* gnu/packages/gnome.scm (ghex): Update to 3.18.4.
[build-system]: Use meson-build-system.
[arguments]: Set glib-or-gtk? flag and add 'skip-gtk-update-icon-cache' phase.
[native-inputs]: Add glib:bin.
This commit is contained in:
Kei Kebreau 2019-07-29 13:16:11 -04:00
parent 21ed1154c8
commit 3748992a9e
No known key found for this signature in database
GPG key ID: E6A5EE3C19467A0D

View file

@ -8448,7 +8448,7 @@ micro-pauses and rest breaks, and restricts you to your daily limit.")
(define-public ghex (define-public ghex
(package (package
(name "ghex") (name "ghex")
(version "3.18.3") (version "3.18.4")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://gnome/sources/ghex/" (uri (string-append "mirror://gnome/sources/ghex/"
@ -8456,10 +8456,21 @@ micro-pauses and rest breaks, and restricts you to your daily limit.")
"ghex-" version ".tar.xz")) "ghex-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"1lq8920ad2chi9ibmyq0x9hg9yk63b0kdbzid03w42cwdzw50x66")))) "1h1pjrr9wynclfykizqd78dbi785wjz6b63p31k87kjvzy8w3nf2"))))
(build-system glib-or-gtk-build-system) (build-system meson-build-system)
(arguments
'(#:glib-or-gtk? #t
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'skip-gtk-update-icon-cache
;; Don't create 'icon-theme.cache'.
(lambda _
(substitute* "meson_post_install.py"
(("gtk-update-icon-cache") (which "true")))
#t)))))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config) `(("pkg-config" ,pkg-config)
("glib:bin" ,glib "bin") ; for glib-compile-schemas
("gnome-common" ,gnome-common) ("gnome-common" ,gnome-common)
("which" ,which) ("which" ,which)
("intltool" ,intltool) ("intltool" ,intltool)