2018-08-18 15:55:14 +02:00
|
|
|
{ stdenv, fetchurl, substituteAll, intltool, itstool, libxslt
|
2018-05-15 19:55:40 +02: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 15:55:14 +02:00
|
|
|
, libgrss, libgsf, libiptcdata, libjpeg, libpng, libseccomp, libsoup, libtiff, libuuid
|
2018-05-15 19:55:40 +02:00
|
|
|
, libvorbis, libxml2, poppler, taglib, upower }:
|
|
|
|
|
2018-08-18 15:55:14 +02:00
|
|
|
let
|
2018-03-21 07:45:31 +01:00
|
|
|
pname = "tracker-miners";
|
2018-08-18 15:55:14 +02:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
version = "2.1.1";
|
2018-02-25 21:07:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-21 07:45:31 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
|
2018-08-18 15:55:14 +02:00
|
|
|
sha256 = "107638773mihxdi194wf3saacqrr4cp9xn3qjfmx60bwq5451ma0";
|
2018-02-25 21:07:20 +01:00
|
|
|
};
|
|
|
|
|
2018-05-15 19:55:40 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
intltool
|
|
|
|
itstool
|
|
|
|
libxslt
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
vala
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
2017-10-04 23:50:14 +02:00
|
|
|
|
2018-08-18 15:55:14 +02:00
|
|
|
# TODO: add libenca, libosinfo
|
2017-10-04 23:50:14 +02:00
|
|
|
buildInputs = [
|
2018-05-15 19:55:40 +02:00
|
|
|
bzip2
|
|
|
|
dbus
|
|
|
|
evolution-data-server
|
|
|
|
exempi
|
|
|
|
flac
|
|
|
|
giflib
|
|
|
|
glib
|
|
|
|
gnome3.gexiv2
|
|
|
|
gnome3.totem-pl-parser
|
|
|
|
gnome3.tracker
|
|
|
|
gst_all_1.gst-plugins-base
|
|
|
|
gst_all_1.gstreamer
|
|
|
|
icu
|
|
|
|
json-glib
|
|
|
|
libcue
|
|
|
|
libexif
|
2018-08-18 15:55:14 +02:00
|
|
|
libgrss
|
2018-05-15 19:55:40 +02:00
|
|
|
libgsf
|
|
|
|
libiptcdata
|
|
|
|
libjpeg
|
|
|
|
libpng
|
|
|
|
libseccomp
|
|
|
|
libsoup
|
|
|
|
libtiff
|
|
|
|
libuuid
|
|
|
|
libvorbis
|
|
|
|
libxml2
|
|
|
|
poppler
|
|
|
|
taglib
|
|
|
|
upower
|
2017-10-04 23:50:14 +02:00
|
|
|
];
|
|
|
|
|
2018-05-15 19:55:40 +02:00
|
|
|
mesonFlags = [
|
2018-08-18 15:55:14 +02:00
|
|
|
# TODO: tests do not like our sandbox
|
|
|
|
"-Dfunctional_tests=false"
|
2018-05-15 19:55:40 +02:00
|
|
|
];
|
2017-10-04 23:50:14 +02:00
|
|
|
|
2018-03-05 02:10:37 +01:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths.patch;
|
|
|
|
inherit (gnome3) tracker;
|
|
|
|
})
|
2018-05-15 19:55:40 +02: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 02:10:37 +01:00
|
|
|
];
|
2017-10-04 23:50:14 +02:00
|
|
|
|
2018-08-18 15:55:14 +02:00
|
|
|
# Symlinks require absolute path and we still cannot use placeholders
|
2018-05-15 19:55:40 +02:00
|
|
|
# https://github.com/NixOS/nixpkgs/pull/39534#discussion_r184339131
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/37693
|
|
|
|
preConfigure = ''
|
|
|
|
mesonFlagsArray+=("-Ddbus_services=$out/share/dbus-1/services")
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
${glib.dev}/bin/glib-compile-schemas $out/share/glib-2.0/schemas
|
|
|
|
'';
|
2018-06-30 02:31:10 +02:00
|
|
|
|
2018-08-18 15:55:14 +02:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "gnome3.${pname}";
|
|
|
|
versionPolicy = "none";
|
|
|
|
};
|
|
|
|
};
|
2018-05-15 19:55:40 +02:00
|
|
|
|
2017-10-04 23:50:14 +02: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 19:55:40 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2017-10-04 23:50:14 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|