nixpkgs/pkgs/desktops/gnome-3/core/tracker-miners/default.nix

102 lines
2.3 KiB
Nix
Raw Normal View History

2019-02-13 21:47:50 +00: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
2018-08-18 14:55:14 +01:00
, libgrss, libgsf, libiptcdata, libjpeg, libpng, libseccomp, libsoup, libtiff, libuuid
, libvorbis, libxml2, poppler, taglib, upower, totem-pl-parser }:
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}";
version = "2.2.2";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "0kk5xaajamb8jlm6cfdbc2m3axzr6bnph84m7697xmb0pkg8hdiw";
};
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 = [
bzip2
dbus
evolution-data-server
exempi
flac
giflib
glib
2019-02-13 21:47:50 +00:00
gexiv2
totem-pl-parser
2019-02-13 21:47:50 +00:00
tracker
gst_all_1.gst-plugins-base
gst_all_1.gstreamer
icu
json-glib
libcue
libexif
2018-08-18 14:55:14 +01:00
libgrss
libgsf
libiptcdata
libjpeg
libpng
libseccomp
libsoup
libtiff
libuuid
libvorbis
libxml2
poppler
taglib
upower
2017-10-04 22:50:14 +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"
"-Dsystemd_user_services=${placeholder "out"}/lib/systemd/user"
];
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;
})
# 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
postInstall = ''
glib-compile-schemas "$out/share/glib-2.0/schemas"
'';
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";
};
};
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;
license = licenses.gpl2Plus;
2017-10-04 22:50:14 +01:00
platforms = platforms.linux;
};
}