2020-10-23 10:28:05 -07:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkg-config
|
|
|
|
, glib
|
|
|
|
, gnome3
|
|
|
|
, libxml2
|
|
|
|
, libgdata
|
|
|
|
, grilo
|
|
|
|
, libzapojit
|
|
|
|
, grilo-plugins
|
|
|
|
, gnome-online-accounts
|
|
|
|
, libmediaart
|
|
|
|
, tracker_2
|
|
|
|
, gfbgraph
|
|
|
|
, librest
|
|
|
|
, libsoup
|
|
|
|
, json-glib
|
|
|
|
, gmp
|
|
|
|
, openssl
|
|
|
|
, dleyna-server
|
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "gnome-online-miners";
|
2019-09-04 04:27:18 -07:00
|
|
|
version = "3.34.0";
|
2018-02-25 12:07:20 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://gnome/sources/gnome-online-miners/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-09-04 04:27:18 -07:00
|
|
|
sha256 = "1n2jz9i8a42zwxx5h8j2gdy6q1vyydh4vl00r0al7w8jzdh24p44";
|
2018-02-25 12:07:20 -08:00
|
|
|
};
|
|
|
|
|
2020-10-23 10:28:05 -07:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
2019-02-13 13:47:50 -08:00
|
|
|
buildInputs = [
|
2020-10-23 10:28:05 -07:00
|
|
|
glib
|
|
|
|
libgdata
|
|
|
|
libxml2
|
|
|
|
libsoup
|
|
|
|
gmp
|
|
|
|
openssl
|
|
|
|
grilo
|
|
|
|
libzapojit
|
|
|
|
grilo-plugins
|
|
|
|
gnome-online-accounts
|
|
|
|
libmediaart
|
|
|
|
tracker_2
|
|
|
|
gfbgraph
|
|
|
|
json-glib
|
|
|
|
librest
|
2019-02-13 13:47:50 -08:00
|
|
|
dleyna-server
|
|
|
|
];
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-02-13 13:47:50 -08:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "gnome-online-miners";
|
|
|
|
attrPath = "gnome3.gnome-online-miners";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 12:35:23 -07:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://wiki.gnome.org/Projects/GnomeOnlineMiners";
|
2016-09-18 12:35:23 -07:00
|
|
|
description = "A set of crawlers that go through your online content and index them locally in Tracker";
|
2020-04-01 05:40:51 -07:00
|
|
|
maintainers = teams.gnome.members;
|
2020-10-23 10:28:05 -07:00
|
|
|
license = licenses.gpl2Plus;
|
2016-09-18 12:35:23 -07:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|