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

74 lines
1.3 KiB
Nix
Raw Normal View History

{ 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
}:
stdenv.mkDerivation rec {
pname = "gnome-online-miners";
version = "3.34.0";
src = fetchurl {
url = "mirror://gnome/sources/gnome-online-miners/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "1n2jz9i8a42zwxx5h8j2gdy6q1vyydh4vl00r0al7w8jzdh24p44";
};
nativeBuildInputs = [
pkg-config
wrapGAppsHook
];
2019-02-13 13:47:50 -08:00
buildInputs = [
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
];
enableParallelBuilding = true;
2019-02-13 13:47:50 -08:00
passthru = {
updateScript = gnome3.updateScript {
packageName = "gnome-online-miners";
attrPath = "gnome3.gnome-online-miners";
};
};
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 = teams.gnome.members;
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}