depot/third_party/nixpkgs/pkgs/development/libraries/zeitgeist/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

81 lines
1.4 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ 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;
};
}