2022-02-07 01:56:49 +00:00
|
|
|
|
{ stdenv
|
|
|
|
|
, lib
|
2019-11-20 11:18:37 +00:00
|
|
|
|
, fetchFromGitLab
|
2021-01-19 06:50:56 +00:00
|
|
|
|
, pkg-config
|
2019-11-20 11:18:37 +00:00
|
|
|
|
, glib
|
|
|
|
|
, sqlite
|
|
|
|
|
, gobject-introspection
|
|
|
|
|
, vala
|
|
|
|
|
, autoconf
|
|
|
|
|
, automake
|
|
|
|
|
, libtool
|
|
|
|
|
, gettext
|
|
|
|
|
, dbus
|
|
|
|
|
, gtk3
|
|
|
|
|
, json-glib
|
|
|
|
|
, librdf_raptor2
|
|
|
|
|
, pythonSupport ? true
|
2020-10-04 05:45:24 +00:00
|
|
|
|
, python3
|
2016-11-18 15:39:22 +00:00
|
|
|
|
}:
|
2014-05-02 15:39:18 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-02-02 01:55:58 +00:00
|
|
|
|
pname = "zeitgeist";
|
2022-02-07 01:56:49 +00:00
|
|
|
|
version = "1.0.4";
|
2014-05-02 15:39:18 +00:00
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
|
outputs = [ "out" "lib" "dev" "man" ] ++ lib.optional pythonSupport "py";
|
2018-09-12 21:37:03 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
|
domain = "gitlab.freedesktop.org";
|
2019-02-02 01:55:58 +00:00
|
|
|
|
owner = pname;
|
|
|
|
|
repo = pname;
|
2017-10-12 21:31:36 +00:00
|
|
|
|
rev = "v${version}";
|
2022-02-07 01:56:49 +00:00
|
|
|
|
sha256 = "kG1N8DXgjYAJ8fbrGHsp7eTqB20H5smzRnW0PSRUYR0=";
|
2014-05-02 15:39:18 +00:00
|
|
|
|
};
|
|
|
|
|
|
2018-09-12 21:37:03 +00:00
|
|
|
|
nativeBuildInputs = [
|
2019-11-20 11:18:37 +00:00
|
|
|
|
autoconf
|
|
|
|
|
automake
|
|
|
|
|
libtool
|
2021-01-19 06:50:56 +00:00
|
|
|
|
pkg-config
|
2019-11-20 11:18:37 +00:00
|
|
|
|
gettext
|
|
|
|
|
gobject-introspection
|
|
|
|
|
vala
|
2020-10-04 05:45:24 +00:00
|
|
|
|
python3
|
2018-09-12 21:37:03 +00: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
|
|
|
|
|
gtk3
|
|
|
|
|
json-glib
|
|
|
|
|
librdf_raptor2
|
2020-10-04 05:45:24 +00:00
|
|
|
|
python3.pkgs.rdflib
|
2019-11-20 11:18:37 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
configureFlags = [
|
2020-10-04 05:45:04 +00:00
|
|
|
|
"--disable-telepathy"
|
2018-02-25 06:12:49 +00:00
|
|
|
|
];
|
2014-05-02 15:39:18 +00:00
|
|
|
|
|
2019-11-20 11:18:37 +00:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2018-09-12 21:37:03 +00: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 15:39:18 +00:00
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
|
postFixup = lib.optionalString pythonSupport ''
|
2020-10-04 05:45:24 +00:00
|
|
|
|
moveToOutput lib/${python3.libPrefix} "$py"
|
2016-11-18 15:39:22 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
|
meta = with 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/";
|
2021-05-07 13:35:21 +00:00
|
|
|
|
maintainers = teams.freedesktop.members ++ (with maintainers; [ ]);
|
2020-10-11 18:48:43 +00:00
|
|
|
|
license = licenses.lgpl21Plus;
|
2014-05-02 15:39:18 +00:00
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|