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