2021-10-14 00:43:12 +00:00
{ stdenv
, lib
2020-05-15 21:57:56 +00:00
, fetchurl
, gettext
, meson
2023-08-04 22:07:22 +00:00
, mesonEmulatorHook
2020-05-15 21:57:56 +00:00
, 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
2023-03-15 16:39:30 +00:00
, buildPackages
2023-10-19 13:55:26 +00:00
, withIntrospection ? lib . meta . availableOn stdenv . hostPlatform gobject-introspection && stdenv . hostPlatform . emulatorAvailable buildPackages
2023-04-12 12:48:02 +00:00
, vala
2020-05-15 21:57:56 +00:00
, python3
2023-04-12 12:48:02 +00:00
, gi-docgen
, graphviz
2020-05-15 21:57:56 +00:00
, libxml2
, glib
2020-12-07 07:45:13 +00:00
, wrapGAppsNoGuiHook
2020-05-15 21:57:56 +00:00
, sqlite
, 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
2024-05-15 15:35:15 +00:00
, avahi
2020-05-15 21:57:56 +00:00
, systemd
, dbus
2022-08-12 12:06:08 +00:00
, writeText
2024-02-29 20:09:43 +00:00
, testers
2020-05-15 21:57:56 +00:00
} :
2020-04-24 23:36:52 +00:00
2024-02-29 20:09:43 +00:00
stdenv . mkDerivation ( finalAttrs : {
2020-04-24 23:36:52 +00:00
pname = " t r a c k e r " ;
2024-06-05 15:53:02 +00:00
version = " 3 . 7 . 3 " ;
2020-04-24 23:36:52 +00:00
outputs = [ " o u t " " d e v " " d e v d o c " ] ;
src = fetchurl {
2024-02-29 20:09:43 +00:00
url = with finalAttrs ; " 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 " ;
2024-06-05 15:53:02 +00:00
hash = " s h a 2 5 6 - q z 1 K U J N + B M X t e E b 2 2 7 m Z 4 p C Y G U A v O J y l k u 5 r d 9 0 o 0 f k = " ;
2020-04-24 23:36:52 +00:00
} ;
2023-03-27 19:17:25 +00:00
strictDeps = true ;
2022-08-12 12:06:08 +00:00
depsBuildBuild = [
pkg-config
] ;
2020-04-24 23:36:52 +00:00
nativeBuildInputs = [
2020-05-15 21:57:56 +00:00
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
gettext
2023-03-15 16:39:30 +00:00
glib
2020-12-07 07:45:13 +00:00
wrapGAppsNoGuiHook
2023-04-12 12:48:02 +00:00
gi-docgen
graphviz
2023-11-16 04:20:00 +00:00
( python3 . pythonOnBuildForHost . withPackages ( p : [ p . pygobject3 ] ) )
2023-03-15 16:39:30 +00:00
] ++ lib . optionals withIntrospection [
gobject-introspection
2023-04-12 12:48:02 +00:00
vala
2023-08-04 22:07:22 +00:00
] ++ lib . optionals ( ! stdenv . buildPlatform . canExecute stdenv . hostPlatform ) [
mesonEmulatorHook
2022-08-12 12:06:08 +00:00
] ;
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
2024-05-15 15:35:15 +00:00
avahi
2020-05-15 21:57:56 +00:00
libstemmer
2022-08-12 12:06:08 +00:00
dbus
2024-09-26 11:04:55 +00:00
] ++ lib . optionals stdenv . hostPlatform . isLinux [
2022-08-12 12:06:08 +00:00
systemd
2020-04-24 23:36:52 +00:00
] ;
2023-03-27 19:17:25 +00:00
nativeCheckInputs = [
dbus
] ;
2020-04-24 23:36:52 +00:00
mesonFlags = [
" - D d o c s = t r u e "
2023-03-15 16:39:30 +00:00
( lib . mesonEnable " i n t r o s p e c t i o n " withIntrospection )
2023-04-12 12:48:02 +00:00
( lib . mesonEnable " v a p i " withIntrospection )
2023-03-15 16:39:30 +00:00
( lib . mesonBool " t e s t _ u t i l s " withIntrospection )
2022-08-12 12:06:08 +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 } "
]
2024-09-26 11:04:55 +00:00
) ++ lib . optionals ( ! stdenv . hostPlatform . isLinux ) [
2022-08-12 12:06:08 +00:00
" - 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 "
2020-04-24 23:36:52 +00:00
] ;
2023-04-12 12:48:02 +00:00
doCheck =
2023-05-24 13:37:59 +00:00
# https://gitlab.gnome.org/GNOME/tracker/-/issues/402
2024-09-26 11:04:55 +00:00
! stdenv . hostPlatform . isDarwin
2023-04-12 12:48:02 +00:00
# https://gitlab.gnome.org/GNOME/tracker/-/issues/398
2024-09-26 11:04:55 +00:00
&& ! stdenv . hostPlatform . is32bit ;
2023-04-12 12:48:02 +00:00
postPatch = ''
chmod + x \
docs/reference/libtracker-sparql/embed-files.py \
docs/reference/libtracker-sparql/generate-svgs.sh
patchShebangs \
utils/data-generators/cc/generate \
docs/reference/libtracker-sparql/embed-files.py \
docs/reference/libtracker-sparql/generate-svgs.sh
'' ;
2020-04-24 23:36:52 +00:00
2022-08-12 12:06:08 +00:00
preCheck =
let
2024-09-26 11:04:55 +00:00
linuxDot0 = lib . optionalString stdenv . hostPlatform . isLinux " . 0 " ;
darwinDot0 = lib . optionalString stdenv . hostPlatform . isDarwin " . 0 " ;
2022-08-12 12:06:08 +00:00
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-11-12 09:05:59 +00:00
checkPhase = ''
runHook preCheck
dbus-run-session \
2022-12-02 08:20:57 +00:00
- - config-file = $ { dbus } /share/dbus-1/session.conf \
2022-03-30 09:31:56 +00:00
meson test \
- - timeout-multiplier 2 \
- - print-errorlogs
2020-11-12 09:05:59 +00:00
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
'' ;
2023-04-12 12:48:02 +00:00
postFixup = ''
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
moveToOutput " s h a r e / d o c " " $ d e v d o c "
'' ;
2020-04-24 23:36:52 +00:00
passthru = {
2021-05-20 23:08:51 +00:00
updateScript = gnome . updateScript {
2024-02-29 20:09:43 +00:00
packageName = finalAttrs . pname ;
} ;
tests . pkg-config = testers . hasPkgConfigModules {
package = finalAttrs . finalPackage ;
2020-04-24 23:36:52 +00:00
} ;
} ;
2021-02-05 17:12:51 +00:00
meta = with lib ; {
2024-05-15 15:35:15 +00:00
homepage = " h t t p s : / / t r a c k e r . g n o m e . o r g / " ;
2020-04-24 23:36:52 +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 " ;
2024-04-21 15:54:59 +00:00
mainProgram = " t r a c k e r 3 " ;
2020-04-24 23:36:52 +00:00
maintainers = teams . gnome . members ;
2020-05-15 21:57:56 +00:00
license = licenses . gpl2Plus ;
2022-08-12 12:06:08 +00:00
platforms = platforms . unix ;
2024-02-29 20:09:43 +00:00
pkgConfigModules = [ " t r a c k e r - s p a r q l - 3 . 0 " " t r a c k e r - t e s t u t i l s - 3 . 0 " ] ;
2020-04-24 23:36:52 +00:00
} ;
2024-02-29 20:09:43 +00:00
} )