46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
64 lines
2.2 KiB
Nix
64 lines
2.2 KiB
Nix
{ stdenv, intltool, fetchurl, webkitgtk, pkgconfig, gtk3, glib
|
|
, file, librsvg, gnome3, gdk-pixbuf, python3
|
|
, 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";
|
|
version = "3.25.90";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/empathy/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "0sn10fcymc6lyrabk7vx8lpvlaxxkqnmcwj9zdkfa8qf3388k4nc";
|
|
};
|
|
|
|
propagatedUserEnvPkgs = [
|
|
gnome-online-accounts shared-mime-info
|
|
];
|
|
propagatedBuildInputs = [
|
|
folks telepathy-logger evolution-data-server telepathy-mission-control
|
|
];
|
|
nativeBuildInputs = [
|
|
pkgconfig libtool intltool itstool file wrapGAppsHook
|
|
libxml2 libxslt yelp-xsl python3 glibcLocales
|
|
];
|
|
buildInputs = [
|
|
gtk3 glib webkitgtk icu gnome-online-accounts
|
|
telepathy-glib clutter-gtk clutter-gst cogl
|
|
gst_all_1.gstreamer gst_all_1.gst-plugins-base
|
|
gcr libsecret libpulseaudio gdk-pixbuf
|
|
libnotify clutter libsoup gnutls libgee p11-kit
|
|
libcanberra-gtk3 telepathy-farstream farstream
|
|
gnome3.adwaita-icon-theme gsettings-desktop-schemas
|
|
librsvg
|
|
# Spell-checking
|
|
enchant isocodes
|
|
# Display maps, location awareness, geocode support
|
|
libchamplain geoclue2 geocode-glib
|
|
# Cheese webcam support, camera monitoring
|
|
cheese libgudev
|
|
];
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = "empathy";
|
|
versionPolicy = "none";
|
|
};
|
|
};
|
|
|
|
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;
|
|
license = [ licenses.gpl2 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|