gnu: libgweather: Remove input labels.

* gnu/packages/gnome.scm (libgweather)[arguments]: Use G-expression and
SEARCH-INPUT-DIRECTORY.
[native-inputs, propagated-inputs]: Remove labels.
This commit is contained in:
Marius Bakke 2022-08-28 13:23:22 +02:00
parent 444c300e3e
commit d9c7321255
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA

View File

@ -5519,27 +5519,24 @@ service via the system message bus.")
"1rkf4yv43qcahyx7bismdv6z2vh5azdnm1fqfmnzrada9cm8ykna")))) "1rkf4yv43qcahyx7bismdv6z2vh5azdnm1fqfmnzrada9cm8ykna"))))
(build-system meson-build-system) (build-system meson-build-system)
(arguments (arguments
`(#:tests? #f ; one of two tests requires network access (list
#:configure-flags #:tests? #f ;one of two tests requires network access
`(,(string-append "-Dzoneinfo_dir=" #:configure-flags
(assoc-ref %build-inputs "tzdata") #~(list (string-append "-Dzoneinfo_dir="
"/share/zoneinfo")))) (search-input-directory %build-inputs
"share/zoneinfo")))))
(native-inputs (native-inputs
`(("glib:bin" ,glib "bin") ; for glib-mkenums (list `(,glib "bin") ;for glib-mkenums
("gobject-introspection" ,gobject-introspection) gobject-introspection
("pkg-config" ,pkg-config) pkg-config
("python" ,python) python
("vala" ,vala) vala
("intltool" ,intltool) intltool
("python-pygobject" ,python-pygobject))) python-pygobject))
(propagated-inputs (propagated-inputs
;; gweather-3.0.pc refers to GTK+, GDK-Pixbuf, GLib/GObject, libxml, and ;; gweather-3.0.pc refers to GTK+, GDK-Pixbuf, GLib/GObject, libxml, and
;; libsoup. ;; libsoup.
`(("gtk+" ,gtk+) (list gtk+ gdk-pixbuf libxml2 libsoup-minimal-2 geocode-glib))
("gdk-pixbuf" ,gdk-pixbuf)
("libxml2" ,libxml2)
("libsoup" ,libsoup-minimal-2)
("geocode-glib" ,geocode-glib)))
(inputs (inputs
(list tzdata)) (list tzdata))
(home-page "https://wiki.gnome.org/action/show/Projects/LibGWeather") (home-page "https://wiki.gnome.org/action/show/Projects/LibGWeather")