guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

57/79: gnu: vte: Update to 0.76.3.


From: guix-commits
Subject: 57/79: gnu: vte: Update to 0.76.3.
Date: Sun, 21 Jul 2024 09:59:48 -0400 (EDT)

lilyp pushed a commit to branch gnome-team
in repository guix.

commit 4d4d5328d929e0fa9ccba73c76b8152c232c74b5
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
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 e327d246e0..aabb2dbef6 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4634,7 +4634,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/"
@@ -4642,13 +4642,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
@@ -4658,6 +4657,7 @@ targeting the GNOME stack simple.")
            gperf
            python
            libxml2))
+    (inputs (list lz4))
     (propagated-inputs
      (list gtk                          ; required by vte-2.91.pc
            gnutls                       ; ditto
@@ -4676,7 +4676,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+)))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]