diff options
author | Vivien Kraus <vivien@planete-kraus.eu> | 2021-11-13 08:19:09 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-11-13 09:32:58 +0000 |
commit | b5941f7be80f142a5bcbdab317c0450c7afca84b (patch) | |
tree | 62dc1b028645037d993d724a951ad422a83a8f4a | |
parent | a944b455d187527c4c0ebc7a6fabc722241b05ba (diff) | |
download | guix-b5941f7be80f142a5bcbdab317c0450c7afca84b.tar.gz |
gnu: tracker-miners: Require the same libsoup as tracker.
* gnu/packages/gnome.scm (tracker-miners)[inputs]: Use the same libsoup version as tracker. (tracker)[inputs]: Warn that tracker-miners should use the same version of libsoup. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
-rw-r--r-- | gnu/packages/gnome.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 9d89a2a8b7..9f323f710f 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -8900,7 +8900,7 @@ easy, safe, and automatic.") ("libxml2" ,libxml2) ("icu4c" ,icu4c) ; libunistring gets miner-miner-fs test to fail. ("json-glib" ,json-glib) - ("libsoup" ,libsoup-minimal-2))) + ("libsoup" ,libsoup-minimal-2))) ; tracker-miners requires the same version. (synopsis "Metadata database, indexer and search tool") (home-page "https://wiki.gnome.org/Projects/Tracker") (description @@ -9019,7 +9019,7 @@ endpoint and it understands SPARQL. ") ("libosinfo" ,libosinfo) ("libpng" ,libpng) ("libseccomp" ,libseccomp) - ("libsoup" ,libsoup) + ("libsoup" ,libsoup-minimal-2) ; because tracker requires this version. ("libtiff" ,libtiff) ("libvorbis" ,libvorbis) ("libxml2" ,libxml2) |