lilyp pushed a commit to branch gnome-team
in repository guix.
commit 0b86766de78f7605b08cba552dc2ef1cc0a222d4
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Sun Jul 14 14:02:58 2024 +0200
gnu: vte: Update to 0.76.3.
* gnu/packages/gnome.scm (vte): Update to 0.76.3.
[#:configure-flags]: Drop implicit “-Dgtk4=true”. Move “-Dgtk3=false” to
the
front.
[inputs]: Add lz4.
(vte-with-gtk+3)[#:configure-flags]: Adjust accordingly.
---
gnu/packages/gnome.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index d822204e7f..de47ec1ca9 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4638,7 +4638,7 @@ targeting the GNOME stack simple.")
(define-public vte
(package
(name "vte")
- (version "0.72.4")
+ (version "0.76.3")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/vte/"
@@ -4646,13 +4646,12 @@ targeting the GNOME stack simple.")
"vte-" version ".tar.xz"))
(sha256
(base32
- "0p4apgwi8v7ccid2bif6zdffk09jl90yy66awhff9jairakbckf7"))))
+ "0q2xgmxzzpc1268n1c88k8p1gjshakzss50j0b87ydvg0m6fjy7n"))))
(build-system meson-build-system)
(arguments
- (list #:configure-flags #~(list "-Dvapi=true"
- "-D_systemd=false"
- "-Dgtk4=true"
- "-Dgtk3=false")))
+ (list #:configure-flags #~(list "-Dgtk3=false"
+ "-Dvapi=true"
+ "-D_systemd=false")))
(native-inputs
(list pkg-config
gettext-minimal
@@ -4662,6 +4661,7 @@ targeting the GNOME stack simple.")
gperf
python
libxml2))
+ (inputs (list lz4))
(propagated-inputs
(list gtk ; required by vte-2.91.pc
gnutls ; ditto
@@ -4680,7 +4680,7 @@ editors, IDEs, etc.")
(name "vte-with-gtk+3")
(arguments (substitute-keyword-arguments (package-arguments vte)
((#:configure-flags flags #~'())
- #~(list "-Dvapi=true" "-D_systemd=false"))))
+ #~(cons "-Dgtk4=false" (delete "-Dgtk3=false" #$flags)))))
(propagated-inputs (modify-inputs (package-propagated-inputs vte)
(replace "gtk" gtk+)))))