06f059f908
The build checks for systemd and won't install them by default if not found.
102 lines
2.3 KiB
Nix
102 lines
2.3 KiB
Nix
{ 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, libiptcdata, libjpeg, libpng, libseccomp, libsoup, libtiff, libuuid
|
|
, libvorbis, libxml2, poppler, taglib, upower, totem-pl-parser }:
|
|
|
|
let
|
|
pname = "tracker-miners";
|
|
in stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
version = "2.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
sha256 = "1xbjbd994jxhdan7227kzdnmiblfy0f1vnsws5l809ydgk58f0qr";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
intltool
|
|
itstool
|
|
libxslt
|
|
meson
|
|
ninja
|
|
pkgconfig
|
|
vala
|
|
wrapGAppsHook
|
|
];
|
|
|
|
# TODO: add libenca, libosinfo
|
|
buildInputs = [
|
|
bzip2
|
|
dbus
|
|
evolution-data-server
|
|
exempi
|
|
flac
|
|
giflib
|
|
glib
|
|
gexiv2
|
|
totem-pl-parser
|
|
tracker
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gstreamer
|
|
icu
|
|
json-glib
|
|
libcue
|
|
libexif
|
|
libgrss
|
|
libgsf
|
|
libiptcdata
|
|
libjpeg
|
|
libpng
|
|
libseccomp
|
|
libsoup
|
|
libtiff
|
|
libuuid
|
|
libvorbis
|
|
libxml2
|
|
poppler
|
|
taglib
|
|
upower
|
|
];
|
|
|
|
mesonFlags = [
|
|
# TODO: tests do not like our sandbox
|
|
"-Dfunctional_tests=false"
|
|
"-Ddbus_services=${placeholder "out"}/share/dbus-1/services"
|
|
"-Dsystemd_user_services=${placeholder "out"}/lib/systemd/user"
|
|
];
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./fix-paths.patch;
|
|
inherit (gnome3) tracker;
|
|
})
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=795576
|
|
(fetchurl {
|
|
url = https://bugzilla.gnome.org/attachment.cgi?id=371427;
|
|
sha256 = "187flswvzymjfxwfrrhizb1cvs780zm39aa3i2vwa5fbllr7kcpf";
|
|
})
|
|
];
|
|
|
|
postInstall = ''
|
|
glib-compile-schemas "$out/share/glib-2.0/schemas"
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
attrPath = "gnome3.${pname}";
|
|
versionPolicy = "none";
|
|
};
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://wiki.gnome.org/Projects/Tracker;
|
|
description = "Desktop-neutral user information store, search tool and indexer";
|
|
maintainers = gnome3.maintainers;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|