2021-01-21 18:00:13 +01:00
|
|
|
|
{ lib, stdenv
|
2019-11-20 12:18:37 +01:00
|
|
|
|
, fetchFromGitLab
|
2019-11-20 12:22:19 +01:00
|
|
|
|
, fetchpatch
|
2021-01-19 07:50:56 +01:00
|
|
|
|
, pkg-config
|
2019-11-20 12:18:37 +01:00
|
|
|
|
, glib
|
|
|
|
|
, sqlite
|
|
|
|
|
, gobject-introspection
|
|
|
|
|
, vala
|
|
|
|
|
, autoconf
|
|
|
|
|
, automake
|
|
|
|
|
, libtool
|
|
|
|
|
, gettext
|
|
|
|
|
, dbus
|
|
|
|
|
, gtk3
|
|
|
|
|
, json-glib
|
|
|
|
|
, librdf_raptor2
|
|
|
|
|
, pythonSupport ? true
|
2020-10-04 07:45:24 +02:00
|
|
|
|
, python3
|
2016-11-18 16:39:22 +01:00
|
|
|
|
}:
|
2014-05-02 17:39:18 +02:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-02-02 02:55:58 +01:00
|
|
|
|
pname = "zeitgeist";
|
2021-03-24 09:09:37 +01:00
|
|
|
|
version = "1.0.3";
|
2014-05-02 17:39:18 +02:00
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
|
outputs = [ "out" "lib" "dev" "man" ] ++ lib.optional pythonSupport "py";
|
2018-09-12 23:37:03 +02:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
|
domain = "gitlab.freedesktop.org";
|
2019-02-02 02:55:58 +01:00
|
|
|
|
owner = pname;
|
|
|
|
|
repo = pname;
|
2017-10-12 23:31:36 +02:00
|
|
|
|
rev = "v${version}";
|
2021-03-24 09:09:37 +01:00
|
|
|
|
sha256 = "0y6fyzxl5np4yskcxibd0p03h619w9ir907nhf40h02y0pk1kgkp";
|
2014-05-02 17:39:18 +02:00
|
|
|
|
};
|
|
|
|
|
|
2019-11-20 12:22:19 +01:00
|
|
|
|
patches = [
|
2021-03-24 09:09:37 +01:00
|
|
|
|
# Fix build with Vala 0.52
|
2019-11-20 12:22:19 +01:00
|
|
|
|
(fetchpatch {
|
2021-03-24 09:09:37 +01:00
|
|
|
|
url = "https://gitlab.freedesktop.org/zeitgeist/zeitgeist/commit/64ac3a6f94cd299e5e14945dc31b48f009dec152.patch";
|
|
|
|
|
sha256 = "Dw1kNE3JoFdmgcQ0eFoFLYvmxlPjXNj56Jkn2meINz4=";
|
2019-11-20 12:22:19 +01:00
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
|
2018-09-12 23:37:03 +02:00
|
|
|
|
nativeBuildInputs = [
|
2019-11-20 12:18:37 +01:00
|
|
|
|
autoconf
|
|
|
|
|
automake
|
|
|
|
|
libtool
|
2021-01-19 07:50:56 +01:00
|
|
|
|
pkg-config
|
2019-11-20 12:18:37 +01:00
|
|
|
|
gettext
|
|
|
|
|
gobject-introspection
|
|
|
|
|
vala
|
2020-10-04 07:45:24 +02:00
|
|
|
|
python3
|
2018-09-12 23:37:03 +02:00
|
|
|
|
];
|
2019-11-20 12:18:37 +01:00
|
|
|
|
|
2018-02-25 07:12:49 +01:00
|
|
|
|
buildInputs = [
|
2019-11-20 12:18:37 +01:00
|
|
|
|
glib
|
|
|
|
|
sqlite
|
|
|
|
|
dbus
|
|
|
|
|
gtk3
|
|
|
|
|
json-glib
|
|
|
|
|
librdf_raptor2
|
2020-10-04 07:45:24 +02:00
|
|
|
|
python3.pkgs.rdflib
|
2019-11-20 12:18:37 +01:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
configureFlags = [
|
2020-10-04 07:45:04 +02:00
|
|
|
|
"--disable-telepathy"
|
2018-02-25 07:12:49 +01:00
|
|
|
|
];
|
2014-05-02 17:39:18 +02:00
|
|
|
|
|
2019-11-20 12:18:37 +01:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2018-09-12 23:37:03 +02:00
|
|
|
|
postPatch = ''
|
|
|
|
|
patchShebangs data/ontology2code
|
|
|
|
|
'';
|
2015-01-08 10:26:49 +01:00
|
|
|
|
|
2019-11-20 12:18:37 +01:00
|
|
|
|
preConfigure = ''
|
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
|
'';
|
2014-05-02 17:39:18 +02:00
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
|
postFixup = lib.optionalString pythonSupport ''
|
2020-10-04 07:45:24 +02:00
|
|
|
|
moveToOutput lib/${python3.libPrefix} "$py"
|
2016-11-18 16:39:22 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
|
meta = with lib; {
|
2019-11-20 12:18:37 +01:00
|
|
|
|
description = "A service which logs the users’s activities and events";
|
|
|
|
|
homepage = "https://zeitgeist.freedesktop.org/";
|
2021-05-07 15:23:50 +02:00
|
|
|
|
maintainers = teams.freedesktop.members ++ (with maintainers; [ lethalman ]);
|
2020-10-11 20:48:43 +02:00
|
|
|
|
license = licenses.lgpl21Plus;
|
2014-05-02 17:39:18 +02:00
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|