2018-02-25 06:12:49 +00:00
|
|
|
{ stdenv, fetchgit, pkgconfig, glib, sqlite, vala_0_38
|
2018-07-17 21:11:16 +01:00
|
|
|
, autoconf, automake, libtool, gettext, dbus, telepathy-glib
|
2018-02-25 02:23:58 +00:00
|
|
|
, gtk3, json-glib, librdf_raptor2, dbus-glib
|
2016-11-18 15:39:22 +00:00
|
|
|
, pythonSupport ? true, python2Packages
|
|
|
|
}:
|
2014-05-02 16:39:18 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 06:12:49 +00:00
|
|
|
version = "1.0.1";
|
2014-08-27 19:53:02 +01:00
|
|
|
name = "zeitgeist-${version}";
|
2014-05-02 16:39:18 +01:00
|
|
|
|
2017-10-12 22:31:36 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://anongit.freedesktop.org/git/zeitgeist/zeitgeist";
|
|
|
|
rev = "v${version}";
|
2018-02-25 06:12:49 +00:00
|
|
|
sha256 = "1lgqcqr5h9ba751b7ajp7h2w1bb5qza2w3k1f95j3ab15p7q0q44";
|
2014-05-02 16:39:18 +01:00
|
|
|
};
|
|
|
|
|
2018-02-25 06:12:49 +00:00
|
|
|
preConfigure = "NOCONFIGURE=1 ./autogen.sh";
|
2014-05-02 16:39:18 +01:00
|
|
|
|
|
|
|
configureFlags = [ "--with-session-bus-services-dir=$(out)/share/dbus-1/services" ];
|
|
|
|
|
2018-02-25 06:12:49 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkgconfig gettext vala_0_38 python2Packages.python ];
|
|
|
|
buildInputs = [
|
2018-07-17 21:11:16 +01:00
|
|
|
glib sqlite dbus telepathy-glib dbus-glib
|
2018-02-25 06:12:49 +00:00
|
|
|
gtk3 json-glib librdf_raptor2 python2Packages.rdflib
|
|
|
|
];
|
2014-05-02 16:39:18 +01:00
|
|
|
|
2015-01-08 09:26:49 +00:00
|
|
|
prePatch = "patchShebangs .";
|
|
|
|
|
2014-05-02 16:39:18 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-02-25 06:12:49 +00:00
|
|
|
postFixup = stdenv.lib.optionalString pythonSupport ''
|
2016-11-18 15:39:22 +00:00
|
|
|
moveToOutput lib/${python2Packages.python.libPrefix} "$py"
|
|
|
|
'';
|
|
|
|
|
|
|
|
outputs = [ "out" ] ++ stdenv.lib.optional pythonSupport "py";
|
|
|
|
|
2014-05-02 16:39:18 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-06-23 12:37:40 +01:00
|
|
|
description = "A service which logs the users's activities and events";
|
2014-05-02 16:39:18 +01:00
|
|
|
homepage = https://launchpad.net/zeitgeist;
|
|
|
|
maintainers = with maintainers; [ lethalman ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|