kkebreau pushed a commit to branch wip-gnome-updates
in repository guix.
commit 6ee885735346a4686aefff7b9c3703bd947f613c
Author: Kei Kebreau <[email protected]>
Date: Mon Jul 29 13:16:11 2019 -0400
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.
[native-inputs]: Add glib:bin and gtk+:bin.
---
gnu/packages/gnome.scm | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 5f3e916..a216985 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -8201,7 +8201,7 @@ micro-pauses and rest breaks, and restricts you to your
daily limit.")
(define-public ghex
(package
(name "ghex")
- (version "3.18.3")
+ (version "3.18.4")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/ghex/"
@@ -8209,10 +8209,14 @@ micro-pauses and rest breaks, and restricts you to your
daily limit.")
"ghex-" version ".tar.xz"))
(sha256
(base32
- "1lq8920ad2chi9ibmyq0x9hg9yk63b0kdbzid03w42cwdzw50x66"))))
- (build-system glib-or-gtk-build-system)
+ "1h1pjrr9wynclfykizqd78dbi785wjz6b63p31k87kjvzy8w3nf2"))))
+ (build-system meson-build-system)
+ (arguments
+ '(#:glib-or-gtk? #t))
(native-inputs
`(("pkg-config" ,pkg-config)
+ ("glib:bin" ,glib "bin") ; for glib-compile-schemas
+ ("gtk+:bin" ,gtk+ "bin") ; for gtk-update-icon-cache
("gnome-common" ,gnome-common)
("which" ,which)
("intltool" ,intltool)