forked from mirrors/nixpkgs
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ stdenv, fetchurl, intltool, pkgconfig
|
|
, libxml2, upower, glib, wrapGAppsHook, vala, sqlite, libxslt
|
|
, gnome3, icu, libuuid, networkmanager, libsoup, json-glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tracker-${version}";
|
|
version = "2.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/tracker/${gnome3.versionBranch version}/${name}.tar.xz";
|
|
sha256 = "1005w90vhk1cl8g6kxpy2vdzbskw2jskfjcl42lngv18q5sb4bss";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript { packageName = "tracker"; attrPath = "gnome3.tracker"; };
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ vala pkgconfig intltool libxslt wrapGAppsHook ];
|
|
# TODO: add libstemmer
|
|
buildInputs = [
|
|
glib libxml2 sqlite upower icu networkmanager libsoup libuuid json-glib
|
|
];
|
|
|
|
# TODO: figure out wrapping unit tests, some of them fail on missing gsettings-desktop-schemas
|
|
configureFlags = [ "--disable-unit-tests" ];
|
|
|
|
postPatch = ''
|
|
patchShebangs utils/g-ir-merge/g-ir-merge
|
|
'';
|
|
|
|
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.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|