nixpkgs/pkgs/development/libraries/tracker/default.nix

144 lines
3.2 KiB
Nix
Raw Normal View History

2020-05-14 09:35:36 +00:00
{ stdenv
, fetchurl
, fetchpatch
2020-05-14 09:35:36 +00:00
, gettext
, meson
, ninja
, pkg-config
2020-09-21 00:51:38 +00:00
, asciidoc
2020-05-14 09:35:36 +00:00
, gobject-introspection
, python3
, gtk-doc
2020-10-11 06:23:35 +00:00
, docbook-xsl-nons
, 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
, vala
, sqlite
, libxslt
, libstemmer
, gnome3
, icu
, libuuid
, libsoup
, json-glib
, systemd
, dbus
, substituteAll
}:
2019-09-02 16:46:04 +00:00
stdenv.mkDerivation rec {
2018-03-15 12:25:55 +00:00
pname = "tracker";
2020-10-24 03:33:16 +00:00
version = "3.0.1";
2018-03-15 12:25:55 +00:00
2018-08-17 11:19:13 +00:00
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
2019-09-02 16:46:04 +00:00
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-10-24 03:33:16 +00:00
sha256 = "1rhcs75axga7p7hl37h6jzb2az89jddlcwc7ykrnb2khyhka78rr";
};
2020-05-14 09:35:36 +00:00
patches = [
(substituteAll {
src = ./fix-paths.patch;
2020-09-21 00:51:38 +00:00
inherit asciidoc;
2020-05-14 09:35:36 +00:00
})
# Fix consistency error with sqlite 3.34
# https://gitlab.gnome.org/GNOME/tracker/merge_requests/353
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/tracker/commit/040e22d005985a19a0dc435a7631f91700804ce4.patch";
sha256 = "5OZj17XY8ZnXfMMim25HvGfFKUlsVlVHOUjZKfBKHcs=";
})
2020-05-14 09:35:36 +00:00
];
2018-08-17 11:19:13 +00:00
nativeBuildInputs = [
2020-05-14 09:35:36 +00:00
meson
ninja
vala
pkg-config
2020-09-21 00:51:38 +00:00
asciidoc
2020-05-14 09:35:36 +00:00
gettext
libxslt
2020-10-24 08:24:40 +00:00
wrapGAppsNoGuiHook
2020-05-14 09:35:36 +00:00
gobject-introspection
gtk-doc
2020-10-11 06:23:35 +00:00
docbook-xsl-nons
docbook_xml_dtd_45
python3 # for data-generators
2019-09-02 16:46:04 +00:00
systemd # used for checks to install systemd user service
dbus # used for checks and pkg-config to install dbus service/s
2018-08-17 11:19:13 +00:00
];
2017-10-04 21:50:14 +00:00
buildInputs = [
2020-05-14 09:35:36 +00:00
glib
libxml2
sqlite
icu
libsoup
libuuid
json-glib
libstemmer
2017-10-04 21:50:14 +00:00
];
checkInputs = [
python3.pkgs.pygobject3
];
2018-08-17 11:19:13 +00:00
mesonFlags = [
"-Ddocs=true"
2018-08-17 11:19:13 +00:00
];
doCheck = true;
2017-10-04 21:50:14 +00:00
postPatch = ''
patchShebangs utils/g-ir-merge/g-ir-merge
2018-08-17 11:19:13 +00:00
patchShebangs utils/data-generators/cc/generate
patchShebangs tests/functional-tests/test-runner.sh.in
patchShebangs tests/functional-tests/*.py
'';
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 00:51:38 +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
'';
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 = {
updateScript = gnome3.updateScript {
packageName = pname;
2018-08-17 11:19:13 +00:00
versionPolicy = "none";
2018-03-15 12:25:55 +00:00
};
};
meta = with stdenv.lib; {
homepage = "https://wiki.gnome.org/Projects/Tracker";
description = "Desktop-neutral user information store, search tool and indexer";
maintainers = teams.gnome.members;
2020-05-14 09:35:36 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}