guix_mirror_bot pushed a commit to branch gnome-team
in repository guix.
commit 239767135dfa0dced7b259e14ff12142c23e69eb
Author: matper <[email protected]>
AuthorDate: Wed Jul 22 15:40:22 2026 +0200
gnu: template-glib: Update to 3.40.0.
* gnu/packages/glib.scm (template-glib): Update to 3.40.0.
[inputs]: Remove gobject-introspection.
[native-inputs]: Add gobject-introspection.
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/glib.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index fd724b2e7e..8e94d72d55 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -1344,7 +1344,7 @@ other API remains the same.")
(define-public template-glib
(package
(name "template-glib")
- (version "3.38.0")
+ (version "3.40.0")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
@@ -1352,13 +1352,14 @@ other API remains the same.")
name "-" version ".tar.xz"))
(sha256
(base32
- "04mk1h2jzij91z5an08irah76wx6qpggf8n45rzypwnw4g10vl20"))))
+ "1mfgrz01an5jlvrwn49s8dgll6yxz8jchnn5dbv6vk14dhpyqcz5"))))
(build-system meson-build-system)
- (inputs (list gettext-minimal glib gobject-introspection))
+ (inputs (list gettext-minimal glib))
(native-inputs
(list bison
flex
- `(,glib "bin") ;for glib-mkenums
+ `(,glib "bin") ;for glib-mkenums
+ gobject-introspection ;for g-ir-scanner
pkg-config
vala))
(home-page "https://gitlab.gnome.org/GNOME/template-glib")