2021-09-30 20:23:09 +00:00
{ stdenv
, lib
2020-05-14 09:35:36 +00:00
, fetchurl
, gettext
, meson
, ninja
2021-01-19 06:50:56 +00:00
, pkg-config
2020-09-21 00:51:38 +00:00
, asciidoc
2020-05-14 09:35:36 +00:00
, gobject-introspection
2023-03-01 16:18:53 +00:00
, buildPackages
, withIntrospection ? stdenv . hostPlatform . emulatorAvailable buildPackages
2020-05-14 09:35:36 +00:00
, python3
2020-10-11 06:23:35 +00:00
, docbook-xsl-nons
2020-05-14 10:06:48 +00:00
, docbook_xml_dtd_45
2020-05-14 09:35:36 +00:00
, libxml2
, glib
2020-10-24 08:24:40 +00:00
, wrapGAppsNoGuiHook
2020-05-14 09:35:36 +00:00
, sqlite
, libxslt
, libstemmer
2021-05-07 21:18:14 +00:00
, gnome
2020-05-14 09:35:36 +00:00
, icu
, libuuid
, libsoup
2021-09-30 20:23:09 +00:00
, libsoup_3
2020-05-14 09:35:36 +00:00
, json-glib
, systemd
, dbus
2022-07-07 18:34:37 +00:00
, writeText
2020-05-14 09:35:36 +00:00
} :
2016-09-18 19:35:23 +00:00
2021-03-21 07:28:27 +00:00
stdenv . mkDerivation rec {
2018-03-15 12:25:55 +00:00
pname = " t r a c k e r " ;
2022-12-05 17:58:21 +00:00
version = " 3 . 4 . 2 " ;
2018-03-15 12:25:55 +00:00
2018-08-17 11:19:13 +00:00
outputs = [ " o u t " " d e v " " d e v d o c " ] ;
2018-02-25 20:07:20 +00:00
src = fetchurl {
2021-01-21 17:00:13 +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 " ;
2022-12-05 17:58:21 +00:00
sha256 = " T m 3 x Q q T 3 B I e P y p j r t a I k d Q 5 e p U a q K q q 6 p y a n N U C 9 F z E = " ;
2018-02-25 20:07:20 +00:00
} ;
2022-07-04 09:52:11 +00:00
postPatch = ''
patchShebangs utils/data-generators/cc/generate
'' ;
2022-07-07 18:34:37 +00:00
depsBuildBuild = [
pkg-config
] ;
2018-08-17 11:19:13 +00:00
nativeBuildInputs = [
2020-05-14 09:35:36 +00:00
meson
ninja
2021-01-19 06:50:56 +00:00
pkg-config
2020-09-21 00:51:38 +00:00
asciidoc
2020-05-14 09:35:36 +00:00
gettext
2023-03-01 16:18:53 +00:00
glib
2020-05-14 09:35:36 +00:00
libxslt
2020-10-24 08:24:40 +00:00
wrapGAppsNoGuiHook
2020-10-11 06:23:35 +00:00
docbook-xsl-nons
2020-05-14 10:06:48 +00:00
docbook_xml_dtd_45
2022-07-07 18:34:37 +00:00
( python3 . pythonForBuild . withPackages ( p : [ p . pygobject3 ] ) )
2023-03-01 16:18:53 +00:00
] ++ lib . optionals withIntrospection [
gobject-introspection
2022-07-07 18:34:37 +00:00
] ;
2016-09-18 19:35:23 +00:00
2017-10-04 21:50:14 +00:00
buildInputs = [
2020-05-14 09:35:36 +00:00
glib
libxml2
sqlite
icu
libsoup
2021-09-30 20:23:09 +00:00
libsoup_3
2020-05-14 09:35:36 +00:00
libuuid
json-glib
libstemmer
2022-07-07 18:34:37 +00:00
dbus
2022-08-02 21:32:36 +00:00
] ++ lib . optionals stdenv . isLinux [
2022-07-07 18:34:37 +00:00
systemd
2020-05-14 10:06:48 +00:00
] ;
2018-08-17 11:19:13 +00:00
mesonFlags = [
2019-03-03 18:08:17 +00:00
" - D d o c s = t r u e "
2023-03-01 16:18:53 +00:00
( lib . mesonEnable " i n t r o s p e c t i o n " withIntrospection )
( lib . mesonBool " t e s t _ u t i l s " withIntrospection )
2022-07-07 18:34:37 +00:00
] ++ (
let
# https://gitlab.gnome.org/GNOME/tracker/-/blob/master/meson.build#L159
crossFile = writeText " c r o s s - f i l e . c o n f " ''
[ properties ]
sqlite3_has_fts5 = ' $ { lib . boolToString ( lib . hasInfix " - D S Q L I T E _ E N A B L E _ F T S 3 " sqlite . NIX_CFLAGS_COMPILE ) } '
'' ;
in
[
" - - c r o s s - f i l e = ${ crossFile } "
]
2022-08-02 21:32:36 +00:00
) ++ lib . optionals ( ! stdenv . isLinux ) [
" - D s y s t e m d _ u s e r _ s e r v i c e s = f a l s e "
] ;
2016-09-18 19:35:23 +00:00
2021-03-21 07:28:27 +00:00
doCheck = true ;
2020-05-14 10:06:48 +00:00
2022-08-02 21:32:36 +00:00
preCheck =
let
linuxDot0 = lib . optionalString stdenv . isLinux " . 0 " ;
darwinDot0 = lib . optionalString stdenv . isDarwin " . 0 " ;
extension = stdenv . hostPlatform . extensions . sharedLibrary ;
in
''
# (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
ln - s $ PWD/src/libtracker-sparql/libtracker-sparql-3.0 $ { darwinDot0 } $ { extension } $ out/lib/libtracker-sparql-3.0 $ { darwinDot0 } $ { extension } $ { linuxDot0 }
'' ;
2020-09-21 00:51:38 +00:00
checkPhase = ''
runHook preCheck
dbus-run-session \
2022-11-21 02:03:50 +00:00
- - config-file = $ { dbus } /share/dbus-1/session.conf \
2022-02-16 18:37:16 +00:00
meson test \
- - timeout-multiplier 2 \
- - print-errorlogs
2020-09-21 00:51:38 +00:00
runHook postCheck
2020-05-14 10:06:48 +00:00
'' ;
postCheck = ''
# Clean up out symlinks
rm - r $ out/lib
2018-08-17 11:19:13 +00:00
'' ;
2018-03-15 12:25:55 +00:00
passthru = {
2021-05-07 21:18:14 +00:00
updateScript = gnome . updateScript {
2018-03-15 12:25:55 +00:00
packageName = pname ;
} ;
} ;
2021-01-21 17:00:13 +00:00
meta = with lib ; {
2020-04-01 01:11:51 +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 " ;
2016-09-18 19:35:23 +00: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 12:40:51 +00:00
maintainers = teams . gnome . members ;
2020-05-14 09:35:36 +00:00
license = licenses . gpl2Plus ;
2022-08-02 21:32:36 +00:00
platforms = platforms . unix ;
2016-09-18 19:35:23 +00:00
} ;
}