2019-02-13 21:47:50 +00:00
|
|
|
{ stdenv, fetchurl, substituteAll, intltool, itstool, libxslt, gexiv2, tracker
|
2018-05-15 18:55:40 +01:00
|
|
|
, meson, ninja, pkgconfig, vala, wrapGAppsHook, bzip2, dbus, evolution-data-server
|
|
|
|
, exempi, flac, giflib, glib, gnome3, gst_all_1, icu, json-glib, libcue, libexif
|
2018-08-18 14:55:14 +01:00
|
|
|
, libgrss, libgsf, libiptcdata, libjpeg, libpng, libseccomp, libsoup, libtiff, libuuid
|
2018-12-25 22:27:49 +00:00
|
|
|
, libvorbis, libxml2, poppler, taglib, upower, totem-pl-parser }:
|
2018-05-15 18:55:40 +01:00
|
|
|
|
2018-08-18 14:55:14 +01:00
|
|
|
let
|
2018-03-21 06:45:31 +00:00
|
|
|
pname = "tracker-miners";
|
2018-08-18 14:55:14 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
2019-05-04 03:09:29 +01:00
|
|
|
version = "2.2.2";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-05 01:12:11 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2019-05-04 03:09:29 +01:00
|
|
|
sha256 = "0kk5xaajamb8jlm6cfdbc2m3axzr6bnph84m7697xmb0pkg8hdiw";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2018-05-15 18:55:40 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
intltool
|
|
|
|
itstool
|
|
|
|
libxslt
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
vala
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
2017-10-04 22:50:14 +01:00
|
|
|
|
2018-08-18 14:55:14 +01:00
|
|
|
# TODO: add libenca, libosinfo
|
2017-10-04 22:50:14 +01:00
|
|
|
buildInputs = [
|
2018-05-15 18:55:40 +01:00
|
|
|
bzip2
|
|
|
|
dbus
|
|
|
|
evolution-data-server
|
|
|
|
exempi
|
|
|
|
flac
|
|
|
|
giflib
|
|
|
|
glib
|
2019-02-13 21:47:50 +00:00
|
|
|
gexiv2
|
2018-12-25 22:27:49 +00:00
|
|
|
totem-pl-parser
|
2019-02-13 21:47:50 +00:00
|
|
|
tracker
|
2018-05-15 18:55:40 +01:00
|
|
|
gst_all_1.gst-plugins-base
|
|
|
|
gst_all_1.gstreamer
|
|
|
|
icu
|
|
|
|
json-glib
|
|
|
|
libcue
|
|
|
|
libexif
|
2018-08-18 14:55:14 +01:00
|
|
|
libgrss
|
2018-05-15 18:55:40 +01:00
|
|
|
libgsf
|
|
|
|
libiptcdata
|
|
|
|
libjpeg
|
|
|
|
libpng
|
|
|
|
libseccomp
|
|
|
|
libsoup
|
|
|
|
libtiff
|
|
|
|
libuuid
|
|
|
|
libvorbis
|
|
|
|
libxml2
|
|
|
|
poppler
|
|
|
|
taglib
|
|
|
|
upower
|
2017-10-04 22:50:14 +01:00
|
|
|
];
|
|
|
|
|
2018-05-15 18:55:40 +01:00
|
|
|
mesonFlags = [
|
2018-08-18 14:55:14 +01:00
|
|
|
# TODO: tests do not like our sandbox
|
|
|
|
"-Dfunctional_tests=false"
|
2018-09-05 01:52:59 +01:00
|
|
|
"-Ddbus_services=${placeholder "out"}/share/dbus-1/services"
|
2019-03-14 23:17:11 +00:00
|
|
|
"-Dsystemd_user_services=${placeholder "out"}/lib/systemd/user"
|
2018-05-15 18:55:40 +01:00
|
|
|
];
|
2017-10-04 22:50:14 +01:00
|
|
|
|
2018-03-05 01:10:37 +00:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths.patch;
|
|
|
|
inherit (gnome3) tracker;
|
|
|
|
})
|
2018-05-15 18:55:40 +01:00
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=795576
|
|
|
|
(fetchurl {
|
|
|
|
url = https://bugzilla.gnome.org/attachment.cgi?id=371427;
|
|
|
|
sha256 = "187flswvzymjfxwfrrhizb1cvs780zm39aa3i2vwa5fbllr7kcpf";
|
|
|
|
})
|
2018-03-05 01:10:37 +00:00
|
|
|
];
|
2017-10-04 22:50:14 +01:00
|
|
|
|
2018-05-15 18:55:40 +01:00
|
|
|
postInstall = ''
|
2018-08-30 18:45:19 +01:00
|
|
|
glib-compile-schemas "$out/share/glib-2.0/schemas"
|
2018-05-15 18:55:40 +01:00
|
|
|
'';
|
2018-06-30 01:31:10 +01:00
|
|
|
|
2018-08-18 14:55:14 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "gnome3.${pname}";
|
|
|
|
versionPolicy = "none";
|
|
|
|
};
|
|
|
|
};
|
2018-05-15 18:55:40 +01:00
|
|
|
|
2017-10-04 22:50:14 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Projects/Tracker;
|
|
|
|
description = "Desktop-neutral user information store, search tool and indexer";
|
|
|
|
maintainers = gnome3.maintainers;
|
2018-05-15 18:55:40 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2017-10-04 22:50:14 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|