guix-patches
[Top][All Lists]
Advanced

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

[bug#61592] [PATCH v2 2/2] gnu: meld: Use new style inputs and gexps.


From: Andy Tai
Subject: [bug#61592] [PATCH v2 2/2] gnu: meld: Use new style inputs and gexps.
Date: Wed, 22 Feb 2023 22:37:36 -0800

* gnu/packages/patchutils.scm (meld): Use new style and gexps.
  [inputs]: Use new style
  [native-inputs]: Use new style
---
 gnu/packages/patchutils.scm | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/patchutils.scm b/gnu/packages/patchutils.scm
index d093391ce5..04761d5ef7 100644
--- a/gnu/packages/patchutils.scm
+++ b/gnu/packages/patchutils.scm
@@ -232,22 +232,22 @@ (define-public meld
         (base32 "03f4j27amyi28flkks8i9bhqzd6xhm6d3c6jzxc57rzniv4hgh9z"))))
     (build-system meson-build-system)
     (native-inputs
-     `(("desktop-file-utils" ,desktop-file-utils)
-       ("intltool" ,intltool)
-       ("itstool" ,itstool)
-       ("xmllint" ,libxml2)
-       ("glib-compile-schemas" ,glib "bin")
-       ("gtk-update-icon-cache" ,gtk+ "bin")
-       ("gobject-introspection" ,gobject-introspection)
-       ("pkg-config" ,pkg-config)
-       ("python" ,python)))
+     (list desktop-file-utils
+       intltool
+       itstool
+       libxml2
+       `(,glib "bin")                   ; for glib-compile-schemas
+       `(,gtk+ "bin")                   ; for gtk-update-icon-cache
+       gobject-introspection
+       pkg-config
+       python))
     (inputs
-     `(("bash-minimal"  ,bash-minimal)
-       ("python" ,python)
-       ("python-cairo" ,python-pycairo)
-       ("python-gobject" ,python-pygobject)
-       ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
-       ("gtksourceview" ,gtksourceview-4)))
+     (list bash-minimal
+       python
+       python-pycairo
+       python-pygobject
+       gsettings-desktop-schemas
+       gtksourceview-4))
     (propagated-inputs
      (list dconf))
     (arguments
-- 
2.39.1






reply via email to

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