guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] gnu: Add evolution.


From: contact . ng0
Subject: [PATCH] gnu: Add evolution.
Date: Mon, 30 Jan 2017 22:59:48 +0000

From: ng0 <address@hidden>

* gnu/packages/gnome.scm (evolution): New variable.
---
 gnu/packages/gnome.scm | 92 +++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 91 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index f6f7aae69..3cc6cbd7a 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -19,7 +19,7 @@
 ;;; Copyright © 2016 Roel Janssen <address@hidden>
 ;;; Copyright © 2016 Leo Famulari <address@hidden>
 ;;; Copyright © 2016 Alex Griffin <address@hidden>
-;;; Copyright © 2016 ng0 <address@hidden>
+;;; Copyright © 2016, 2017 ng0 <address@hidden>
 ;;; Copyright © 2016 David Craven <address@hidden>
 ;;; Copyright © 2016 Tobias Geerinckx-Rice <address@hidden>
 ;;;
@@ -94,6 +94,7 @@
   #:use-module (gnu packages perl)
   #:use-module (gnu packages photo)
   #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages pretty-print)
   #:use-module (gnu packages pulseaudio)
   #:use-module (gnu packages python)
   #:use-module (gnu packages scanner)
@@ -5907,3 +5908,92 @@ for process dependencies, icons for processes, the 
ability to hide processes,
 graphical time histories of CPU/memory/swap usage and the ability to
 kill/reinice processes.")
     (license license:gpl2+)))
+
+(define-public evolution
+  (package
+    (name "evolution")
+    (version "3.22.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://gnome/sources/" name "/"
+                           (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "02k9bi4d34yns9csxmkdl3gxwmf6lr5zx4yk3w1wjs544bq0j8jj"))))
+    (build-system glib-or-gtk-build-system)
+    (arguments
+     `(#:configure-flags (list "--without-glade-catalog"
+                               "--disable-autoar"
+                               "--disable-code-coverage"
+                               "--disable-installed-tests"
+                               "--disable-pst-import"
+                               "--enable-canberra"
+                               "--enable-openldap"
+                               "--without-spamassasin"
+                               "--with-bogofilter"
+                               "--enable-smime"
+                               "--enable-nss"
+                               "--enable-gtkspell"
+                               "--enable-contact-maps"
+                               "--enable-text-highlight"
+                               ;; "--enable-libcryptui"
+                               "--without-nspr-libs"
+                               "--without-nspr-includes"
+                               "--without-nss-libs"
+                               "--without-nss-includes"
+                               "--enable-nss=yes"
+                               "--enable-weather")
+       #:tests? #f))
+    (inputs
+     `(("bogofilter" ,bogofilter)
+       ("highlight" ,highlight)
+       ;; TODO: ("spamassasin" ,spamassasin)
+       ("libgweather" ,libgweather)
+       ("nspr" ,nspr)
+       ("nss" ,nss)
+       ("gtkspell3" ,gtkspell3)
+       ("openldap" ,openldap)
+       ("libchamplain" ,libchamplain)
+       ("clutter" ,clutter)
+       ("clutter-gtk" ,clutter-gtk)
+       ("geocode-glib" ,geocode-glib)
+       ;; ("gnupg" ,gnupg)
+       ;; ("pinentry-gnome3" ,pinentry-gnome3)
+       ;; TODO: ("libcryptui" ,libcryptui)
+       ("libice" ,libice)
+       ("libsm" ,libsm)
+       ("libical" ,libical)
+       ("dconf" ,dconf)
+       ("atk" ,atk)
+       ("iso-codes" ,iso-codes)
+       ("shared-mime-info" ,shared-mime-info)
+       ("libnotify" ,libnotify)
+       ("gtk+" ,gtk+)
+       ("gdk-pixbuf" ,gdk-pixbuf)
+       ("cairo" ,cairo)
+       ("webkitgtk" ,webkitgtk)
+       ("libsoup" ,libsoup)
+       ("libcanberra" ,libcanberra)
+       ("evolution-data-server" ,evolution-data-server)
+       ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
+       ("gnome-desktop" ,gnome-desktop)
+       ("libxml2" ,libxml2)
+       ("glib" ,glib)
+       ("enchant" ,enchant)
+       ("gcr" ,gcr)))
+    (native-inputs
+     `(("docbook-xml" ,docbook-xml)
+       ("yelp-tools" ,yelp-tools)
+       ("gtk-doc" ,gtk-doc)
+       ("intltool" ,intltool)
+       ("gnome-common" ,gnome-common)
+       ("pkg-config" ,pkg-config)))
+    (home-page "https://wiki.gnome.org/Apps/Evolution";)
+    (synopsis "Integrated email, addressbook and calendaring functionality")
+    (description
+     "Evolution is a personal information management application that
+provides integrated mail, calendaring and address book functionality.")
+    (license (list license:lgpl3 license:cc-by-sa3.0
+                   license:fdl1.3+ license:openldap2.8))))
-- 
2.11.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]