diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-05-15 21:00:29 -0400 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2021-09-05 10:26:29 -0400 |
commit | 360b5583b986183b9bc6e72e8b36e4555f886efa (patch) | |
tree | 489c557087feb6eb950750758f0012a1affd5e24 | |
parent | 2af93a941f920c8249a462cbe76cb1a4a42efb6c (diff) | |
download | guix-360b5583b986183b9bc6e72e8b36e4555f886efa.tar.gz |
gnu: tracker: Enable some features.
* gnu/packages/gnome.scm (tracker)[native-inputs]: Add python-wrapper. [inputs]: Add bash-completion, network-manager and libstemmer. [propagated-inputs]: Add glib.
-rw-r--r-- | gnu/packages/gnome.scm | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4e8ef3851e..93057ed29b 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -135,6 +135,7 @@ #:use-module (gnu packages inkscape) #:use-module (gnu packages iso-codes) #:use-module (gnu packages kerberos) + #:use-module (gnu packages language) #:use-module (gnu packages libcanberra) #:use-module (gnu packages libffi) #:use-module (gnu packages libunistring) @@ -8754,14 +8755,20 @@ easy, safe, and automatic.") ("python-pygobject" ,python-pygobject) ("intltool" ,intltool) ("pkg-config" ,pkg-config) + ("python" ,python-wrapper) ; for patch-shebangs phase ("vala" ,vala))) (inputs - `(("dbus" ,dbus) + `(("bash-completion" ,bash-completion) ; for installing bash-completion files + ("dbus" ,dbus) ("sqlite" ,sqlite) ("libxml2" ,libxml2) - ("icu4c" ,icu4c) ; libunistring gets miner-miner-fs test to fail. + ("icu4c" ,icu4c) ; libunistring gets miner-miner-fs test to fail. ("json-glib" ,json-glib) - ("libsoup" ,libsoup))) + ("libnm" ,network-manager) ; for network status detection support + ("libsoup" ,libsoup) + ("stemmer" ,libstemmer))) ; for language stemming support + (propagated-inputs + `(("glib" ,glib))) ; referenced in .pc files (synopsis "Metadata database, indexer and search tool") (home-page "https://wiki.gnome.org/Projects/Tracker") (description |