2019-11-20 11:18:37 +00:00
|
|
|
|
{ stdenv
|
|
|
|
|
, fetchFromGitLab
|
2019-11-20 11:22:19 +00:00
|
|
|
|
, fetchpatch
|
2019-11-20 11:18:37 +00:00
|
|
|
|
, pkgconfig
|
|
|
|
|
, glib
|
|
|
|
|
, sqlite
|
|
|
|
|
, gobject-introspection
|
|
|
|
|
, vala
|
|
|
|
|
, autoconf
|
|
|
|
|
, automake
|
|
|
|
|
, libtool
|
|
|
|
|
, gettext
|
|
|
|
|
, dbus
|
|
|
|
|
, telepathy-glib
|
|
|
|
|
, gtk3
|
|
|
|
|
, json-glib
|
|
|
|
|
, librdf_raptor2
|
|
|
|
|
, dbus-glib
|
|
|
|
|
, pythonSupport ? true
|
|
|
|
|
, python2Packages
|
2016-11-18 15:39:22 +00:00
|
|
|
|
}:
|
2014-05-02 16:39:18 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-02-02 01:55:58 +00:00
|
|
|
|
pname = "zeitgeist";
|
|
|
|
|
version = "1.0.2";
|
2014-05-02 16:39:18 +01:00
|
|
|
|
|
2018-09-12 22:37:03 +01:00
|
|
|
|
outputs = [ "out" "lib" "dev" "man" ] ++ stdenv.lib.optional pythonSupport "py";
|
|
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
|
domain = "gitlab.freedesktop.org";
|
2019-02-02 01:55:58 +00:00
|
|
|
|
owner = pname;
|
|
|
|
|
repo = pname;
|
2017-10-12 22:31:36 +01:00
|
|
|
|
rev = "v${version}";
|
2019-02-02 01:55:58 +00:00
|
|
|
|
sha256 = "0ig3d3j1n0ghaxsgfww6g2hhcdwx8cljwwfmp9jk1nrvkxd6rnmv";
|
2014-05-02 16:39:18 +01:00
|
|
|
|
};
|
|
|
|
|
|
2019-11-20 11:22:19 +00:00
|
|
|
|
patches = [
|
|
|
|
|
# Fix build with gettext 0.20
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://gitlab.freedesktop.org/zeitgeist/zeitgeist/commit/b5c00e80189fd59a059a95c4e276728a2492cb89.patch";
|
|
|
|
|
sha256 = "1r7f7j3l2p6xlzxajihgx8bzbc2sxcb9spc9pi26rz9bwmngdyq7";
|
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
|
2018-09-12 22:37:03 +01:00
|
|
|
|
nativeBuildInputs = [
|
2019-11-20 11:18:37 +00:00
|
|
|
|
autoconf
|
|
|
|
|
automake
|
|
|
|
|
libtool
|
|
|
|
|
pkgconfig
|
|
|
|
|
gettext
|
|
|
|
|
gobject-introspection
|
|
|
|
|
vala
|
|
|
|
|
python2Packages.python
|
2018-09-12 22:37:03 +01:00
|
|
|
|
];
|
2019-11-20 11:18:37 +00:00
|
|
|
|
|
2018-02-25 06:12:49 +00:00
|
|
|
|
buildInputs = [
|
2019-11-20 11:18:37 +00:00
|
|
|
|
glib
|
|
|
|
|
sqlite
|
|
|
|
|
dbus
|
|
|
|
|
telepathy-glib
|
|
|
|
|
dbus-glib
|
|
|
|
|
gtk3
|
|
|
|
|
json-glib
|
|
|
|
|
librdf_raptor2
|
|
|
|
|
python2Packages.rdflib
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
|
"--with-session-bus-services-dir=${placeholder "out"}/share/dbus-1/services"
|
2018-02-25 06:12:49 +00:00
|
|
|
|
];
|
2014-05-02 16:39:18 +01:00
|
|
|
|
|
2019-11-20 11:18:37 +00:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2018-09-12 22:37:03 +01:00
|
|
|
|
postPatch = ''
|
|
|
|
|
patchShebangs data/ontology2code
|
|
|
|
|
'';
|
2015-01-08 09:26:49 +00:00
|
|
|
|
|
2019-11-20 11:18:37 +00:00
|
|
|
|
preConfigure = ''
|
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
|
'';
|
2014-05-02 16:39:18 +01:00
|
|
|
|
|
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"
|
|
|
|
|
'';
|
|
|
|
|
|
2014-05-02 16:39:18 +01:00
|
|
|
|
meta = with stdenv.lib; {
|
2019-11-20 11:18:37 +00:00
|
|
|
|
description = "A service which logs the users’s activities and events";
|
|
|
|
|
homepage = "https://zeitgeist.freedesktop.org/";
|
2019-02-02 01:55:58 +00:00
|
|
|
|
maintainers = with maintainers; [ lethalman worldofpeace ];
|
2014-05-02 16:39:18 +01:00
|
|
|
|
license = licenses.gpl2;
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|