diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-07-12 22:54:29 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-07-12 23:23:25 -0400 |
commit | 5f521555498fa01a8c157aaf6a6512cc8533de54 (patch) | |
tree | eb09224ba72cb8ee5f593629461c2c33baef484b /gnu/packages | |
parent | d6556ba1bf4c3bb3aa7f0cfd9e9e913ebdda9832 (diff) | |
download | guix-5f521555498fa01a8c157aaf6a6512cc8533de54.tar guix-5f521555498fa01a8c157aaf6a6512cc8533de54.tar.gz |
gnu: tracker: Use new style inputs.
* gnu/packages/gnome.scm (tracker)
[native-inputs]: Use new style inputs.
[inputs]: Likewise.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome.scm | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index dc8ef351fd..b3d6ba9a8e 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -8838,24 +8838,24 @@ easy, safe, and automatic.") (invoke "dbus-run-session" "--" "meson" "test" "--print-errorlogs"))))))) (native-inputs - `(("glib:bin" ,glib "bin") - ("gobject-introspection" ,gobject-introspection) - ("docbook-xsl" ,docbook-xsl) - ("docbook-xml-4.5" ,docbook-xml) - ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) - ("asciidoc" ,asciidoc) - ("xsltproc" ,libxslt) - ("cmake-minimal" ,cmake-minimal) - ("python-pygobject" ,python-pygobject) - ("gtk-doc" ,gtk-doc/stable) - ("intltool" ,intltool) - ("dbus" ,dbus) - ("pkg-config" ,pkg-config) - ("python" ,python) - ("vala" ,vala))) + (list `(,glib "bin") + gobject-introspection + docbook-xsl + docbook-xml + gsettings-desktop-schemas + asciidoc + libxslt + cmake-minimal + python-pygobject + gtk-doc/stable + intltool + dbus + pkg-config + python + vala)) (inputs - `(("dbus" ,dbus) - ("libsoup" ,libsoup))) + (list dbus + libsoup)) (propagated-inputs ;; These are in Requires or Requires.private of tracker-sparql-3.0.pc. (list glib |