~ruther/guix-local

228300f64da6016eb8eab417d93e4e6337690843 — Liliana Marie Prikler 2 years ago d8d3d36
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.
1 files changed, 7 insertions(+), 7 deletions(-)

M gnu/packages/gnome.scm
M gnu/packages/gnome.scm => gnu/packages/gnome.scm +7 -7
@@ 4642,7 4642,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/"


@@ 4650,13 4650,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


@@ 4666,6 4665,7 @@ targeting the GNOME stack simple.")
           gperf
           python
           libxml2))
    (inputs (list lz4))
    (propagated-inputs
     (list gtk                          ; required by vte-2.91.pc
           gnutls                       ; ditto


@@ 4684,7 4684,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+)))))