2019-06-25 17:50:11 +00:00
|
|
|
{ stdenv
|
|
|
|
, cmake
|
|
|
|
, ninja
|
|
|
|
, intltool
|
|
|
|
, fetchurl
|
|
|
|
, libxml2
|
|
|
|
, webkitgtk
|
|
|
|
, highlight
|
|
|
|
, pkgconfig
|
|
|
|
, gtk3
|
|
|
|
, glib
|
|
|
|
, libnotify
|
|
|
|
, gtkspell3
|
|
|
|
, evolution-data-server
|
|
|
|
, adwaita-icon-theme
|
|
|
|
, gnome-desktop
|
|
|
|
, libgdata
|
|
|
|
, libgweather
|
|
|
|
, glib-networking
|
|
|
|
, gsettings-desktop-schemas
|
|
|
|
, wrapGAppsHook
|
|
|
|
, itstool
|
|
|
|
, shared-mime-info
|
|
|
|
, libical
|
|
|
|
, db
|
|
|
|
, gcr
|
|
|
|
, sqlite
|
|
|
|
, gnome3
|
|
|
|
, librsvg
|
|
|
|
, gdk_pixbuf
|
|
|
|
, libsecret
|
|
|
|
, nss
|
|
|
|
, nspr
|
|
|
|
, icu
|
|
|
|
, libcanberra-gtk3
|
|
|
|
, bogofilter
|
|
|
|
, gst_all_1
|
|
|
|
, procps
|
|
|
|
, p11-kit
|
|
|
|
, openldap
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "evolution";
|
2019-06-25 17:44:19 +00:00
|
|
|
version = "3.32.3";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-06-25 17:50:11 +00:00
|
|
|
url = "mirror://gnome/sources/evolution/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-06-25 17:44:19 +00:00
|
|
|
sha256 = "0ghwi4mmx6l28dkjx7ayiqcrvmfakqfiyvdg6946v5dcimgsclxn";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2019-06-25 17:50:11 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
intltool
|
|
|
|
itstool
|
|
|
|
libxml2
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2018-03-05 01:50:23 +00:00
|
|
|
buildInputs = [
|
2019-06-25 17:50:11 +00:00
|
|
|
adwaita-icon-theme
|
|
|
|
bogofilter
|
|
|
|
db
|
|
|
|
evolution-data-server
|
|
|
|
gcr
|
|
|
|
gdk_pixbuf
|
|
|
|
glib
|
|
|
|
glib-networking
|
|
|
|
gnome-desktop
|
2019-02-13 21:47:50 +00:00
|
|
|
gsettings-desktop-schemas
|
2019-06-25 17:50:11 +00:00
|
|
|
gst_all_1.gst-plugins-base
|
|
|
|
gst_all_1.gstreamer
|
|
|
|
gtk3
|
|
|
|
gtkspell3
|
|
|
|
highlight
|
|
|
|
icu
|
|
|
|
libcanberra-gtk3
|
|
|
|
libgdata
|
|
|
|
libgweather
|
|
|
|
libical
|
|
|
|
libnotify
|
|
|
|
librsvg
|
|
|
|
libsecret
|
|
|
|
nspr
|
|
|
|
nss
|
|
|
|
openldap
|
|
|
|
p11-kit
|
|
|
|
procps
|
|
|
|
shared-mime-info
|
|
|
|
sqlite
|
|
|
|
webkitgtk
|
2018-03-05 01:50:23 +00:00
|
|
|
];
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2019-06-25 17:50:11 +00:00
|
|
|
propagatedUserEnvPkgs = [
|
|
|
|
evolution-data-server
|
|
|
|
];
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2018-03-05 01:50:23 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DENABLE_AUTOAR=OFF"
|
|
|
|
"-DENABLE_LIBCRYPTUI=OFF"
|
|
|
|
"-DENABLE_PST_IMPORT=OFF"
|
2019-06-25 17:50:11 +00:00
|
|
|
"-DENABLE_YTNEF=OFF"
|
|
|
|
];
|
|
|
|
|
|
|
|
requiredSystemFeatures = [
|
|
|
|
"big-parallel"
|
2018-03-05 01:50:23 +00:00
|
|
|
];
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2018-03-05 01:50:23 +00:00
|
|
|
doCheck = true;
|
2017-03-16 22:05:04 +00:00
|
|
|
|
2018-03-05 01:50:23 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "evolution";
|
|
|
|
attrPath = "gnome3.evolution";
|
|
|
|
};
|
|
|
|
};
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2018-09-05 00:43:33 +00:00
|
|
|
PKG_CONFIG_LIBEDATASERVERUI_1_2_UIMODULEDIR = "${placeholder "out"}/lib/evolution-data-server/ui-modules";
|
|
|
|
|
2016-09-18 19:35:23 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Evolution;
|
|
|
|
description = "Personal information management application that provides integrated mail, calendaring and address book functionality";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|