2021-01-21 18:00:13 +01:00
{ lib , stdenv
2020-05-14 11:35:36 +02:00
, fetchurl
, gettext
, meson
, ninja
2021-01-19 07:50:56 +01:00
, pkg-config
2020-09-21 02:51:38 +02:00
, asciidoc
2020-05-14 11:35:36 +02:00
, gobject-introspection
, python3
, gtk-doc
2020-10-11 08:23:35 +02:00
, docbook-xsl-nons
2020-05-14 12:06:48 +02:00
, docbook_xml_dtd_45
2020-05-14 11:35:36 +02:00
, libxml2
, glib
2020-10-24 10:24:40 +02:00
, wrapGAppsNoGuiHook
2020-05-14 11:35:36 +02:00
, vala
, sqlite
, libxslt
, libstemmer
, gnome3
, icu
, libuuid
, libsoup
, json-glib
, systemd
, dbus
, substituteAll
} :
2016-09-18 21:35:23 +02:00
2021-04-08 17:36:57 +02:00
stdenv . mkDerivation ( rec {
2018-03-15 13:25:55 +01:00
pname = " t r a c k e r " ;
2021-03-12 11:48:13 +01:00
version = " 3 . 0 . 3 " ;
2018-03-15 13:25:55 +01:00
2018-08-17 13:19:13 +02:00
outputs = [ " o u t " " d e v " " d e v d o c " ] ;
2018-02-25 21:07:20 +01:00
src = fetchurl {
2021-01-21 18:00:13 +01: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-03-12 11:48:13 +01:00
sha256 = " s h a 2 5 6 - b 1 y E q z v h 7 a U g U B s q 7 X I h Y W o M 8 V K R D F N 3 V 7 U 4 v A X v / K M = " ;
2018-02-25 21:07:20 +01:00
} ;
2020-05-14 11:35:36 +02:00
patches = [
( substituteAll {
src = ./fix-paths.patch ;
2020-09-21 02:51:38 +02:00
inherit asciidoc ;
2020-05-14 11:35:36 +02:00
} )
] ;
2018-08-17 13:19:13 +02:00
nativeBuildInputs = [
2020-05-14 11:35:36 +02:00
meson
ninja
vala
2021-01-19 07:50:56 +01:00
pkg-config
2020-09-21 02:51:38 +02:00
asciidoc
2020-05-14 11:35:36 +02:00
gettext
libxslt
2020-10-24 10:24:40 +02:00
wrapGAppsNoGuiHook
2020-05-14 11:35:36 +02:00
gobject-introspection
gtk-doc
2020-10-11 08:23:35 +02:00
docbook-xsl-nons
2020-05-14 12:06:48 +02:00
docbook_xml_dtd_45
2019-03-03 19:08:17 +01:00
python3 # for data-generators
2019-09-02 18:46:04 +02:00
systemd # used for checks to install systemd user service
2021-01-19 07:50:56 +01:00
dbus # used for checks and pkg-config to install dbus service/s
2018-08-17 13:19:13 +02:00
] ;
2016-09-18 21:35:23 +02:00
2017-10-04 23:50:14 +02:00
buildInputs = [
2020-05-14 11:35:36 +02:00
glib
libxml2
sqlite
icu
libsoup
libuuid
json-glib
libstemmer
2017-10-04 23:50:14 +02:00
] ;
2016-09-18 21:35:23 +02:00
2020-05-14 12:06:48 +02:00
checkInputs = [
python3 . pkgs . pygobject3
] ;
2018-08-17 13:19:13 +02:00
mesonFlags = [
2019-03-03 19:08:17 +01:00
" - D d o c s = t r u e "
2018-08-17 13:19:13 +02:00
] ;
2016-09-18 21:35:23 +02:00
2021-04-08 17:36:57 +02:00
# https://gitlab.gnome.org/GNOME/tracker/-/issues/292#note_1075369
doCheck = ! stdenv . isi686 ;
2020-05-14 12:06:48 +02:00
2017-10-04 23:50:14 +02:00
postPatch = ''
patchShebangs utils/g-ir-merge/g-ir-merge
2018-08-17 13:19:13 +02:00
patchShebangs utils/data-generators/cc/generate
2020-05-14 12:06:48 +02:00
patchShebangs tests/functional-tests/test-runner.sh.in
patchShebangs tests/functional-tests /* . p y
'' ;
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-09-21 02:51:38 +02: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-14 12:06:48 +02:00
'' ;
postCheck = ''
# Clean up out symlinks
rm - r $ out/lib
2018-08-17 13:19:13 +02:00
'' ;
2018-03-15 13:25:55 +01:00
passthru = {
updateScript = gnome3 . updateScript {
packageName = pname ;
2018-08-17 13:19:13 +02:00
versionPolicy = " n o n e " ;
2018-03-15 13:25:55 +01:00
} ;
} ;
2021-01-21 18:00:13 +01:00
meta = with lib ; {
2020-04-01 03:11:51 +02: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 " ;
2016-09-18 21:35:23 +02:00
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 " ;
2020-04-01 14:40:51 +02:00
maintainers = teams . gnome . members ;
2020-05-14 11:35:36 +02:00
license = licenses . gpl2Plus ;
2016-09-18 21:35:23 +02:00
platforms = platforms . linux ;
} ;
}
2021-04-10 16:55:44 +02:00
// {
2021-04-08 17:36:57 +02:00
# TMP: fatal error: libtracker-sparql/tracker-sparql-enum-types.h: No such file or directory
enableParallelBuilding = false ;
}
)