Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
1.4 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
stdenv,
lib,
fetchFromGitLab,
pkg-config,
glib,
sqlite,
gobject-introspection,
vala,
autoconf,
automake,
libtool,
gettext,
dbus,
gtk3,
json-glib,
librdf_raptor2,
pythonSupport ? true,
python3,
}:
stdenv.mkDerivation rec {
pname = "zeitgeist";
version = "1.0.4";
outputs = [
"out"
"lib"
"dev"
"man"
]
++ lib.optional pythonSupport "py";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "zeitgeist";
repo = "zeitgeist";
rev = "v${version}";
sha256 = "kG1N8DXgjYAJ8fbrGHsp7eTqB20H5smzRnW0PSRUYR0=";
};
nativeBuildInputs = [
autoconf
automake
libtool
pkg-config
gettext
gobject-introspection
vala
python3
];
buildInputs = [
glib
sqlite
dbus
gtk3
json-glib
librdf_raptor2
python3.pkgs.rdflib
];
configureFlags = [
"--disable-telepathy"
];
enableParallelBuilding = true;
postPatch = ''
patchShebangs data/ontology2code
'';
preConfigure = ''
NOCONFIGURE=1 ./autogen.sh
'';
postFixup = lib.optionalString pythonSupport ''
moveToOutput lib/${python3.libPrefix} "$py"
'';
meta = with lib; {
description = "Service which logs the userss activities and events";
homepage = "https://zeitgeist.freedesktop.org/";
teams = [ teams.freedesktop ];
license = licenses.lgpl21Plus;
platforms = platforms.linux;
};
}