raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit 96dd0cef5b49e04c3aa8c968df81aef0ced57b8a
Author: Raghav Gururajan <[email protected]>
AuthorDate: Sun May 16 21:12:26 2021 -0400
gnu: tracker: Propagate dependencies as per pkg-config file.
* gnu/packages/gnome.scm (tracker)[inputs]: Move json-glib, libsoup,
and libxml2 to ...
[propagated-inputs]: ... here.
---
gnu/packages/gnome.scm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index de1ae35..0628c29 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -8823,14 +8823,15 @@ easy, safe, and automatic.")
("dbus" ,dbus)
("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
("sqlite" ,sqlite)
- ("libxml2" ,libxml2)
("icu4c" ,icu4c) ; libunistring gets miner-miner-fs test to fail.
- ("json-glib" ,json-glib)
("libnm" ,network-manager) ; for network status detection support
- ("libsoup" ,libsoup)
- ("stemmer" ,libstemmer))) ; for language stemming support
+ ("stemmer" ,libstemmer))) ; for language stemming support
(propagated-inputs
- `(("glib" ,glib))) ; referenced in .pc files
+ ;; The following are referenced in pkg-config file.
+ `(("glib" ,glib)
+ ("json-glib" ,json-glib)
+ ("libsoup" ,libsoup)
+ ("libxml2" ,libxml2)))
(synopsis "Metadata database, indexer and search tool")
(home-page "https://wiki.gnome.org/Projects/Tracker")
(description