2020-05-14 10:35:36 +01:00
{ stdenv
, fetchurl
, gettext
, meson
, ninja
, pkgconfig
, gobject-introspection
, python3
, gtk-doc
, docbook_xsl
, docbook_xml_dtd_412
, docbook_xml_dtd_43
2020-05-14 11:06:48 +01:00
, docbook_xml_dtd_45
2020-05-14 10:35:36 +01:00
, libxml2
, glib
, wrapGAppsHook
, vala
, sqlite
, libxslt
, libstemmer
, gnome3
, icu
, libuuid
, networkmanager
, libsoup
, json-glib
, systemd
, dbus
, substituteAll
} :
2016-09-18 20:35:23 +01:00
2019-09-02 17:46:04 +01:00
stdenv . mkDerivation rec {
2018-03-15 12:25:55 +00:00
pname = " t r a c k e r " ;
2020-03-20 01:16:49 +00:00
version = " 2 . 3 . 4 " ;
2018-03-15 12:25:55 +00:00
2018-08-17 12:19:13 +01:00
outputs = [ " o u t " " d e v " " d e v d o c " ] ;
2018-02-25 20:07:20 +00:00
src = fetchurl {
2019-09-02 17:46:04 +01:00
url = " m i r r o r : / / g n o m e / s o u r c e s / ${ pname } / ${ stdenv . lib . versions . majorMinor version } / ${ pname } - ${ version } . t a r . x z " ;
2020-06-02 21:44:52 +01:00
sha256 = " 0 v a i 0 q z 9 j n 3 z 5 d l z y s y n w h b b m s l p 8 4 y g d q l 8 1 f 5 w f x x r 9 8 j 5 4 y a p " ;
2018-02-25 20:07:20 +00:00
} ;
2020-05-14 10:35:36 +01:00
patches = [
( substituteAll {
src = ./fix-paths.patch ;
gdbus = " ${ glib . bin } / b i n / g d b u s " ;
} )
] ;
2018-08-17 12:19:13 +01:00
nativeBuildInputs = [
2020-05-14 10:35:36 +01:00
meson
ninja
vala
pkgconfig
gettext
libxslt
wrapGAppsHook
gobject-introspection
gtk-doc
docbook_xsl
docbook_xml_dtd_412
docbook_xml_dtd_43
2020-05-14 11:06:48 +01:00
docbook_xml_dtd_45
2019-03-03 18:08:17 +00:00
python3 # for data-generators
2019-09-02 17:46:04 +01:00
systemd # used for checks to install systemd user service
2019-10-13 19:01:48 +01:00
dbus # used for checks and pkgconfig to install dbus service/s
2018-08-17 12:19:13 +01:00
] ;
2016-09-18 20:35:23 +01:00
2017-10-04 22:50:14 +01:00
buildInputs = [
2020-05-14 10:35:36 +01:00
glib
libxml2
sqlite
icu
networkmanager
libsoup
libuuid
json-glib
libstemmer
2017-10-04 22:50:14 +01:00
] ;
2016-09-18 20:35:23 +01:00
2020-05-14 11:06:48 +01:00
checkInputs = [
python3 . pkgs . pygobject3
] ;
2018-08-17 12:19:13 +01:00
mesonFlags = [
# TODO: figure out wrapping unit tests, some of them fail on missing gsettings-desktop-schemas
2020-05-14 11:06:48 +01:00
# "-Dfunctional_tests=true"
2019-03-03 18:08:17 +00:00
" - D d o c s = t r u e "
2018-08-17 12:19:13 +01:00
] ;
2016-09-18 20:35:23 +01:00
2020-05-14 11:06:48 +01:00
doCheck = true ;
2017-10-04 22:50:14 +01:00
postPatch = ''
patchShebangs utils/g-ir-merge/g-ir-merge
2018-08-17 12:19:13 +01:00
patchShebangs utils/data-generators/cc/generate
2020-05-14 11:06:48 +01: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
ln - s $ PWD/src/libtracker-sparql-backend/libtracker-sparql-2.0.so $ out/lib/libtracker-sparql-2.0.so.0
ln - s $ PWD/src/libtracker-miner/libtracker-miner-2.0.so $ out/lib/libtracker-miner-2.0.so.0
ln - s $ PWD/src/libtracker-data/libtracker-data.so $ out/lib/libtracker-data.so
'' ;
postCheck = ''
# Clean up out symlinks
rm - r $ out/lib
2018-08-17 12:19:13 +01:00
'' ;
postInstall = ''
2018-08-30 18:45:19 +01:00
glib-compile-schemas " $ o u t / s h a r e / g l i b - 2 . 0 / s c h e m a s "
2016-09-18 20:35:23 +01:00
'' ;
2018-03-15 12:25:55 +00:00
passthru = {
updateScript = gnome3 . updateScript {
packageName = pname ;
2018-08-17 12:19:13 +01:00
versionPolicy = " n o n e " ;
2018-03-15 12:25:55 +00:00
} ;
} ;
2016-09-18 20:35:23 +01:00
meta = with stdenv . lib ; {
2020-04-01 02:11:51 +01: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 20:35:23 +01: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 13:40:51 +01:00
maintainers = teams . gnome . members ;
2020-05-14 10:35:36 +01:00
license = licenses . gpl2Plus ;
2016-09-18 20:35:23 +01:00
platforms = platforms . linux ;
} ;
}