;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Andreas Enge ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages zeitgeist) #:use-module ((guix licenses) #:select (gpl2+)) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix utils) #:use-module (guix build-system glib-or-gtk) #:use-module (gnu packages databases) #:use-module (gnu packages glib) #:use-module (gnu packages gtk) #:use-module (gnu packages gnome) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages rdf)) (define-public zeitgeist (package (name "zeitgeist") (version "0.9.14") (source (origin (method url-fetch) (uri (string-append "https://launchpad.net/zeitgeist/" (version-major+minor version) "/" version "/+download/" name "-" version ".tar.xz")) (sha256 (base32 "0qgh2mgkmnf3nhsldfwjhxndhp1c8shka7gs9r0k5xkywszmm6vn")))) (build-system glib-or-gtk-build-system) (native-inputs `(("gobject-introspection" ,gobject-introspection) ("intltool" ,intltool) ("pkg-config" ,pkg-config))) (inputs `(("dbus" ,dbus) ("dbus-glib" ,dbus-glib) ("glib" ,glib) ("gtk+" ,gtk+) ("json-glib" ,json-glib) ("python" ,python-wrapper) ("python-rdflib" ,python-rdflib) ("raptor2" ,raptor2) ("sqlite" ,sqlite) ("telepathy-glib" ,telepathy-glib) ("vala" ,vala))) (home-page "http://zeitgeist-project.com/") (synopsis "Logging service for desktop environments") (description "Zeitgeist is a service which logs the users' activities and events (files opened, websites visites, conversations held with other people, etc.) and makes relevant information available to other applications. It is able to establish relationships between items based on similarity and usage patterns.") (license gpl2+))) ; most files are lgpl2.1+