diff options
author | Kei Kebreau <kkebreau@posteo.net> | 2020-04-21 14:18:32 -0400 |
---|---|---|
committer | Kei Kebreau <kkebreau@posteo.net> | 2020-05-12 10:49:52 -0400 |
commit | 2de267b0d53e36bacc5d0b96830565909f227b0c (patch) | |
tree | 837871345c7b6060fd96f71806502329111a6a45 | |
parent | f712a47b6f58064bb47a19f917a5bafd10185b8b (diff) | |
download | guix-2de267b0d53e36bacc5d0b96830565909f227b0c.tar.gz |
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.
-rw-r--r-- | gnu/packages/gnome.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 8027d03f4a..6b8cf8e13c 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) |