From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [WIP 3/8] gnu: Add folks. Date: Fri, 15 Apr 2016 23:02:24 -0400 Message-ID: <4fbdfcc9af8b6613e04f1d5942032e342b71e8e7.1460775480.git.leo@famulari.name> References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53582) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1arGUw-00089Z-5o for guix-devel@gnu.org; Fri, 15 Apr 2016 23:02:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1arGUr-0002px-TO for guix-devel@gnu.org; Fri, 15 Apr 2016 23:02:14 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:50115) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1arGUr-0002pt-PO for guix-devel@gnu.org; Fri, 15 Apr 2016 23:02:09 -0400 Received: from jasmine.lan (c-69-249-5-231.hsd1.pa.comcast.net [69.249.5.231]) by mail.messagingengine.com (Postfix) with ESMTPA id 2FBD1C0001A for ; Fri, 15 Apr 2016 23:02:09 -0400 (EDT) In-Reply-To: In-Reply-To: References: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/gnome.scm (folks): New variable. --- gnu/packages/gnome.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 7ba2283..d1a5a46 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -16,6 +16,7 @@ ;;; Copyright © 2016 Jochem Raat ;;; Copyright © 2016 Rene Saavedra ;;; Copyright © 2016 Kei Yamashita +;;; Copyright © 2016 Leo Famulari ;;; ;;; This file is part of GNU Guix. ;;; @@ -4997,3 +4998,38 @@ specified duration and save it as a GIF encoded animated image file.") "Libzapojit is a GLib-based library for accessing online service APIs of Microsoft SkyDrive and Hotmail, using their REST protocols.") (license license:lgpl2.1+))) + +(define-public folks + (package + (name "folks") + (version "0.11.2") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1f51albxgfqxbax57i3pcgv2fx7i419xaapzdvldas6gw100ma1m")))) + (build-system glib-or-gtk-build-system) + (inputs + `(("bdb" ,bdb) + ("dbus-glib" ,dbus-glib) + ("evolution-data-server" ,evolution-data-server) + ("glib" ,glib) + ("libgee" ,libgee) + ("telepathy-glib" ,telepathy-glib))) + (native-inputs + `(("gobject-introspection" ,gobject-introspection) + ("intltool" ,intltool) + ("pkg-config" ,pkg-config) + ("vala" ,vala))) + (synopsis "Library to aggregates data about people") + (description "libfolks is a library that aggregates people from multiple +sources (eg, Telepathy connection managers for IM contacts, Evolution Data +Server for local contacts, libsocialweb for web service contacts, etc.) to +create metacontacts. It's written in Vala, which generates C code when +compiled.") + (home-page "https://wiki.gnome.org/Projects/Folks") + (license license:lgpl2.1+))) -- 2.7.3