kkebreau pushed a commit to branch wip-gnome3.36
in repository guix.
commit 978272cb36eeb3e1610745cd4a3bccd8011a32bd
Author: Kei Kebreau <[email protected]>
AuthorDate: Tue Apr 21 14:18:32 2020 -0400
gnu: vte: Update to 0.60.1.
* gnu/packages/gnome.scm (vte): Update to 0.60.1.
[arguments]: Add configure flag to build without systemd.
---
gnu/packages/gnome.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 690852e..82cebe2 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3230,7 +3230,7 @@ libraries written in C.")
(define-public vte
(package
(name "vte")
- (version "0.58.3")
+ (version "0.60.1")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/vte/"
@@ -3238,8 +3238,10 @@ libraries written in C.")
"vte-" version ".tar.xz"))
(sha256
(base32
- "0xa9ipwic4jnhhbzlnqbhssz10xkzv61cpkl1ammc6mdq95bbp12"))))
+ "1i7h1jvsg115l5djn29n06xsqvygpfagczxy0i9f39zq6dr809ay"))))
(build-system meson-build-system)
+ (arguments
+ '(#:configure-flags '("-D_systemd=false")))
(native-inputs
`(("pkg-config" ,pkg-config)
("intltool" ,intltool)