summaryrefslogtreecommitdiff
path: root/pkgs/desktops/gnome-3/3.22/apps/evolution/default.nix
diff options
context:
space:
mode:
authorNicolas B. Pierron <nicolas.b.pierron@gmail.com>2016-10-31 15:16:29 +0000
committerNicolas B. Pierron <nicolas.b.pierron@gmail.com>2016-10-31 15:16:29 +0000
commit59b5bbeae91109007e36a269a94cccc865dc5175 (patch)
tree1ee3d18aedace6d66034ea72fea571d20d8d0fee /pkgs/desktops/gnome-3/3.22/apps/evolution/default.nix
parentDo not use old stdenv version in faust wrap functions. (-8 alias, -15 unpatch... (diff)
parentMerge pull request #19675 from edwtjo/dictd-touchup (diff)
downloadnixpkgs-origin/security-updates.tar.gz
Merge branch master into security-updatesorigin/security-updatesgitlab.intr/security-updates
This merge mostly take the changes made to the master branch. Some conflict happen in top-level/default.nix due to a reformating of the code of which is computing the fix-point. This merge fixes these issues by adding the pkgsIndex argument, needed to re-evaluate the fix-point with another set of packages, and also re-add the second fix-point made to support the dependencies.
Diffstat (limited to 'pkgs/desktops/gnome-3/3.22/apps/evolution/default.nix')
-rw-r--r--pkgs/desktops/gnome-3/3.22/apps/evolution/default.nix46
1 files changed, 46 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-3/3.22/apps/evolution/default.nix b/pkgs/desktops/gnome-3/3.22/apps/evolution/default.nix
new file mode 100644
index 000000000000..0b72bf5965e0
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.22/apps/evolution/default.nix
@@ -0,0 +1,46 @@
+{ stdenv, intltool, fetchurl, libxml2, webkitgtk, highlight
+, pkgconfig, gtk3, glib, libnotify, gtkspell3
+, wrapGAppsHook, itstool, shared_mime_info, libical, db, gcr, sqlite
+, gnome3, librsvg, gdk_pixbuf, libsecret, nss, nspr, icu, libtool
+, libcanberra_gtk3, bogofilter, gst_all_1, procps, p11_kit, dconf }:
+
+let
+ majVer = gnome3.version;
+in stdenv.mkDerivation rec {
+ inherit (import ./src.nix fetchurl) name src;
+
+ doCheck = true;
+
+ propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard
+ gnome3.evolution_data_server ];
+
+ propagatedBuildInputs = [ gnome3.gtkhtml ];
+
+ buildInputs = [ gtk3 glib intltool itstool libxml2 libtool
+ gdk_pixbuf gnome3.defaultIconTheme librsvg db icu
+ gnome3.evolution_data_server libsecret libical gcr
+ webkitgtk shared_mime_info gnome3.gnome_desktop gtkspell3
+ libcanberra_gtk3 bogofilter gnome3.libgdata sqlite
+ gst_all_1.gstreamer gst_all_1.gst-plugins-base p11_kit
+ nss nspr libnotify procps highlight gnome3.libgweather
+ gnome3.gsettings_desktop_schemas dconf
+ gnome3.libgnome_keyring gnome3.glib_networking ];
+
+ nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
+
+ configureFlags = [ "--disable-spamassassin" "--disable-pst-import" "--disable-autoar"
+ "--disable-libcryptui" ];
+
+ NIX_CFLAGS_COMPILE = "-I${nss.dev}/include/nss -I${glib.dev}/include/gio-unix-2.0";
+
+ enableParallelBuilding = true;
+
+ 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;
+ requiredSystemFeatures = [ "big-parallel" ];
+ };
+}