My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/zeitgeist/default.nix

81 lines
1.4 KiB

{ 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 = pname;
repo = pname;
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 = "A service which logs the userss activities and events";
homepage = "https://zeitgeist.freedesktop.org/";
maintainers = teams.freedesktop.members ++ (with maintainers; [ ]);
license = licenses.lgpl21Plus;
platforms = platforms.linux;
};
}