nixpkgs/pkgs/desktops/gnome-3/core/empathy/default.nix

65 lines
2.2 KiB
Nix
Raw Normal View History

{ stdenv, intltool, fetchurl, webkitgtk, pkgconfig, gtk3, glib
2019-05-22 13:03:39 +02:00
, file, librsvg, gnome3, gdk-pixbuf, python3
2018-09-14 01:40:23 +02:00
, telepathy-glib, telepathy-farstream, glibcLocales
, clutter-gtk, clutter-gst, gst_all_1, cogl, gnome-online-accounts
, gcr, libsecret, folks, libpulseaudio, telepathy-mission-control
, telepathy-logger, libnotify, clutter, libsoup, gnutls
, evolution-data-server, yelp-xsl
, libcanberra-gtk3, p11-kit, farstream, libtool, shared-mime-info
, wrapGAppsHook, itstool, libxml2, libxslt, icu, libgee, gsettings-desktop-schemas
, isocodes, enchant, libchamplain, geoclue2, geocode-glib, cheese, libgudev }:
stdenv.mkDerivation rec {
pname = "empathy";
2018-03-13 02:03:18 +01:00
version = "3.25.90";
src = fetchurl {
url = "mirror://gnome/sources/empathy/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2018-03-13 02:03:18 +01:00
sha256 = "0sn10fcymc6lyrabk7vx8lpvlaxxkqnmcwj9zdkfa8qf3388k4nc";
};
2017-12-12 19:57:02 +01:00
propagatedUserEnvPkgs = [
gnome-online-accounts shared-mime-info
2017-12-12 19:57:02 +01:00
];
propagatedBuildInputs = [
folks telepathy-logger evolution-data-server telepathy-mission-control
2017-12-12 19:57:02 +01:00
];
nativeBuildInputs = [
pkgconfig libtool intltool itstool file wrapGAppsHook
2018-09-14 01:40:23 +02:00
libxml2 libxslt yelp-xsl python3 glibcLocales
2017-12-12 19:57:02 +01:00
];
buildInputs = [
gtk3 glib webkitgtk icu gnome-online-accounts
telepathy-glib clutter-gtk clutter-gst cogl
2017-12-12 19:57:02 +01:00
gst_all_1.gstreamer gst_all_1.gst-plugins-base
2019-05-22 13:03:39 +02:00
gcr libsecret libpulseaudio gdk-pixbuf
libnotify clutter libsoup gnutls libgee p11-kit
libcanberra-gtk3 telepathy-farstream farstream
gnome3.adwaita-icon-theme gsettings-desktop-schemas
2017-12-12 19:57:02 +01:00
librsvg
2017-12-12 20:53:59 +01:00
# Spell-checking
enchant isocodes
# Display maps, location awareness, geocode support
libchamplain geoclue2 geocode-glib
2017-12-12 20:53:59 +01:00
# Cheese webcam support, camera monitoring
cheese libgudev
2017-12-12 19:57:02 +01:00
];
2018-09-14 01:40:23 +02:00
LC_ALL = "en_US.UTF-8";
passthru = {
updateScript = gnome3.updateScript {
packageName = "empathy";
versionPolicy = "none";
2018-09-14 01:40:23 +02:00
};
};
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Empathy;
description = "Messaging program which supports text, voice, video chat, and file transfers over many different protocols";
maintainers = gnome3.maintainers;
2017-12-12 19:57:02 +01:00
license = [ licenses.gpl2 ];
platforms = platforms.linux;
};
}