guix-commits
[Top][All Lists]
Advanced

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

08/08: gnu: vte: Use new package style.


From: guix-commits
Subject: 08/08: gnu: vte: Use new package style.
Date: Sat, 9 Jul 2022 04:48:20 -0400 (EDT)

lilyp pushed a commit to branch master
in repository guix.

commit 9e4632081ff31bf0d1715edd66f514614c6dc4bb
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sat Jul 9 08:35:44 2022 +0200

    gnu: vte: Use new package style.
    
    * gnu/packages/gnome.scm (vte)[arguments]: Convert to list of G-Expressions.
    [native-inputs]: Drop labels.
---
 gnu/packages/gnome.scm | 21 ++++++++++-----------
 1 file changed, 10 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 24826be712..1bae9d7a59 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4404,18 +4404,17 @@ targeting the GNOME stack simple.")
                 "0j8pvn225ybzx9p33ill838bzp8kkdn28383h0vs65m2kiwd9rqk"))))
     (build-system meson-build-system)
     (arguments
-     `(#:configure-flags
-       '("-Dvapi=true"
-         "-D_systemd=false")))
+     (list #:configure-flags #~(list "-Dvapi=true"
+                                     "-D_systemd=false")))
     (native-inputs
-     `(("pkg-config" ,pkg-config)
-       ("gettext" ,gettext-minimal)
-       ("vala" ,vala)
-       ("gobject-introspection" ,gobject-introspection)
-       ("glib" ,glib "bin")             ; for glib-genmarshal, etc.
-       ("gperf" ,gperf)
-       ("python" ,python)
-       ("xmllint" ,libxml2)))
+     (list pkg-config
+           gettext-minimal
+           vala
+           gobject-introspection
+           `(,glib "bin")               ; for glib-genmarshal, etc.
+           gperf
+           python
+           libxml2))
     (propagated-inputs
      (list gtk+ ; required by vte-2.91.pc
            gnutls ; ditto



reply via email to

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