2019-06-19 02:08:04 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, substituteAll
|
|
|
|
, intltool
|
|
|
|
, itstool
|
|
|
|
, libxslt
|
|
|
|
, gexiv2
|
|
|
|
, tracker
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkgconfig
|
|
|
|
, vala
|
|
|
|
, wrapGAppsHook
|
|
|
|
, bzip2
|
|
|
|
, dbus
|
|
|
|
, evolution-data-server
|
|
|
|
, exempi
|
|
|
|
, flac
|
|
|
|
, giflib
|
|
|
|
, glib
|
|
|
|
, gnome3
|
|
|
|
, gst_all_1
|
|
|
|
, icu
|
|
|
|
, json-glib
|
|
|
|
, libcue
|
|
|
|
, libexif
|
|
|
|
, libgrss
|
|
|
|
, libgsf
|
|
|
|
, libgxps
|
|
|
|
, libiptcdata
|
|
|
|
, libjpeg
|
|
|
|
, libosinfo
|
|
|
|
, libpng
|
|
|
|
, libseccomp
|
|
|
|
, libsoup
|
|
|
|
, libtiff
|
|
|
|
, libuuid
|
|
|
|
, libvorbis
|
|
|
|
, libxml2
|
|
|
|
, poppler
|
|
|
|
, taglib
|
|
|
|
, upower
|
|
|
|
, totem-pl-parser
|
|
|
|
}:
|
2018-05-15 18:55:40 +01:00
|
|
|
|
2019-06-19 02:08:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-21 06:45:31 +00:00
|
|
|
pname = "tracker-miners";
|
2020-03-20 01:08:27 +00:00
|
|
|
version = "2.3.3";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-06-19 02:08:04 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-03-20 01:08:27 +00:00
|
|
|
sha256 = "dHKqKNeGJiDTyiu+w7ED31R9cxnBLpWn96qfn23uSxk=";
|
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
|
2019-06-19 02:08:04 +01:00
|
|
|
libgxps
|
2018-05-15 18:55:40 +01:00
|
|
|
libiptcdata
|
|
|
|
libjpeg
|
2019-06-19 02:08:04 +01:00
|
|
|
libosinfo
|
2018-05-15 18:55:40 +01:00
|
|
|
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;
|
2019-08-23 01:49:39 +01:00
|
|
|
inherit tracker;
|
2018-03-05 01:10:37 +00:00
|
|
|
})
|
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;
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|