2021-10-14 00:43:12 +00:00
{ stdenv
, lib
2020-05-15 21:57:56 +00:00
, fetchurl
2021-10-17 02:12:59 +00:00
, fetchpatch
2020-05-15 21:57:56 +00:00
, gettext
, meson
, ninja
2021-02-05 17:12:51 +00:00
, pkg-config
2020-11-12 09:05:59 +00:00
, asciidoc
2020-05-15 21:57:56 +00:00
, gobject-introspection
, python3
2020-11-12 09:05:59 +00:00
, docbook-xsl-nons
2020-05-15 21:57:56 +00:00
, docbook_xml_dtd_45
, libxml2
, glib
2020-12-07 07:45:13 +00:00
, wrapGAppsNoGuiHook
2020-05-15 21:57:56 +00:00
, vala
, sqlite
, libxslt
, libstemmer
2021-05-20 23:08:51 +00:00
, gnome
2020-05-15 21:57:56 +00:00
, icu
, libuuid
, libsoup
2021-10-14 00:43:12 +00:00
, libsoup_3
2020-05-15 21:57:56 +00:00
, json-glib
, systemd
, dbus
, substituteAll
} :
2020-04-24 23:36:52 +00:00
2021-05-20 23:08:51 +00:00
stdenv . mkDerivation rec {
2020-04-24 23:36:52 +00:00
pname = " t r a c k e r " ;
2021-10-14 00:43:12 +00:00
version = " 3 . 2 . 0 " ;
2020-04-24 23:36:52 +00:00
outputs = [ " o u t " " d e v " " d e v d o c " ] ;
src = fetchurl {
2021-02-05 17:12:51 +00:00
url = " m i r r o r : / / g n o m e / s o u r c e s / ${ pname } / ${ lib . versions . majorMinor version } / ${ pname } - ${ version } . t a r . x z " ;
2021-10-14 00:43:12 +00:00
sha256 = " s h a 2 5 6 - 8 R e l K H X U p N C c e q m T + M i o 0 G R o 1 d z 7 F T 6 4 2 q U e s T h E U T o = " ;
2020-04-24 23:36:52 +00:00
} ;
2020-05-15 21:57:56 +00:00
patches = [
( substituteAll {
src = ./fix-paths.patch ;
2020-11-12 09:05:59 +00:00
inherit asciidoc ;
2020-05-15 21:57:56 +00:00
} )
2021-10-17 02:12:59 +00:00
] ++ lib . optionals ( stdenv . hostPlatform . isi686 ) [
# Upstream: https://gitlab.gnome.org/GNOME/tracker/-/issues/332
( fetchpatch {
name = " i 6 8 6 - t e s t . p a t c h " ;
url = " h t t p s : / / g i t l a b . g n o m e . o r g / G N O M E / t r a c k e r / - / c o m m i t / a f 7 0 7 1 8 1 a 2 c 4 9 2 a 7 9 4 d a e c 7 c e 3 f 3 0 6 2 d 6 7 f f d 9 d c . p a t c h " ;
sha256 = " s h a 2 5 6 - K O d k T y 7 9 w 3 o i Q I L r P G 0 0 U V r v + V B j A k 4 Y 8 6 8 I 8 j t i f q k = " ;
} )
2021-05-20 23:08:51 +00:00
] ;
2020-05-15 21:57:56 +00:00
2020-04-24 23:36:52 +00:00
nativeBuildInputs = [
2020-05-15 21:57:56 +00:00
meson
ninja
vala
2021-02-05 17:12:51 +00:00
pkg-config
2020-11-12 09:05:59 +00:00
asciidoc
2020-05-15 21:57:56 +00:00
gettext
libxslt
2020-12-07 07:45:13 +00:00
wrapGAppsNoGuiHook
2020-05-15 21:57:56 +00:00
gobject-introspection
2020-11-12 09:05:59 +00:00
docbook-xsl-nons
2020-05-15 21:57:56 +00:00
docbook_xml_dtd_45
2020-04-24 23:36:52 +00:00
python3 # for data-generators
systemd # used for checks to install systemd user service
2021-02-05 17:12:51 +00:00
dbus # used for checks and pkg-config to install dbus service/s
2020-04-24 23:36:52 +00:00
] ;
buildInputs = [
2020-05-15 21:57:56 +00:00
glib
libxml2
sqlite
icu
libsoup
2021-10-14 00:43:12 +00:00
libsoup_3
2020-05-15 21:57:56 +00:00
libuuid
json-glib
libstemmer
] ;
2021-05-20 23:08:51 +00:00
checkInputs = with python3 . pkgs ; [
pygobject3
tappy
2020-04-24 23:36:52 +00:00
] ;
mesonFlags = [
" - D d o c s = t r u e "
] ;
2021-05-20 23:08:51 +00:00
doCheck = true ;
2020-04-24 23:36:52 +00:00
postPatch = ''
patchShebangs utils/g-ir-merge/g-ir-merge
patchShebangs utils/data-generators/cc/generate
2020-05-15 21:57:56 +00:00
patchShebangs tests/functional-tests/test-runner.sh.in
patchShebangs tests/functional-tests /* . p y
2021-05-20 23:08:51 +00:00
patchShebangs examples/python/endpoint.py
2020-05-15 21:57:56 +00:00
'' ;
preCheck = ''
# (tracker-store:6194): Tracker-CRITICAL **: 09:34:07.722: Cannot initialize database: Could not open sqlite3 database:'/homeless-shelter/.cache/tracker/meta.db': unable to open database file
export HOME = $ ( mktemp - d )
# Our gobject-introspection patches make the shared library paths absolute
# in the GIR files. When running functional tests, the library is not yet installed,
# though, so we need to replace the absolute path with a local one during build.
# We are using a symlink that will be overridden during installation.
mkdir - p $ out/lib
2020-11-12 09:05:59 +00:00
ln - s $ PWD/src/libtracker-sparql/libtracker-sparql-3.0.so $ out/lib/libtracker-sparql-3.0.so.0
'' ;
checkPhase = ''
runHook preCheck
dbus-run-session \
- - config-file = $ { dbus . daemon } /share/dbus-1/session.conf \
meson test - - print-errorlogs
runHook postCheck
2020-05-15 21:57:56 +00:00
'' ;
postCheck = ''
# Clean up out symlinks
rm - r $ out/lib
2020-04-24 23:36:52 +00:00
'' ;
passthru = {
2021-05-20 23:08:51 +00:00
updateScript = gnome . updateScript {
2020-04-24 23:36:52 +00:00
packageName = pname ;
versionPolicy = " n o n e " ;
} ;
} ;
2021-02-05 17:12:51 +00:00
meta = with lib ; {
2020-04-24 23:36:52 +00:00
homepage = " h t t p s : / / w i k i . g n o m e . o r g / P r o j e c t s / T r a c k e r " ;
description = " D e s k t o p - n e u t r a l u s e r i n f o r m a t i o n s t o r e , s e a r c h t o o l a n d i n d e x e r " ;
maintainers = teams . gnome . members ;
2020-05-15 21:57:56 +00:00
license = licenses . gpl2Plus ;
2020-04-24 23:36:52 +00:00
platforms = platforms . linux ;
} ;
}