2016-09-18 12:35:23 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, gnome3, libxml2
|
2017-10-04 14:50:14 -07:00
|
|
|
, libsoup, json_glib, gmp, openssl, dleyna-server, wrapGAppsHook }:
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
|
2017-10-04 14:50:14 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
2017-09-05 14:26:13 -07:00
|
|
|
buildInputs = [ glib gnome3.libgdata libxml2 libsoup gmp openssl
|
2016-09-18 12:35:23 -07:00
|
|
|
gnome3.grilo gnome3.libzapojit gnome3.grilo-plugins
|
2017-10-04 14:50:14 -07:00
|
|
|
gnome3.gnome_online_accounts gnome3.libmediaart
|
2017-09-01 06:09:45 -07:00
|
|
|
gnome3.tracker gnome3.gfbgraph json_glib gnome3.rest
|
|
|
|
dleyna-server ];
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Projects/GnomeOnlineMiners;
|
|
|
|
description = "A set of crawlers that go through your online content and index them locally in Tracker";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|