9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
90 lines
1.7 KiB
Nix
90 lines
1.7 KiB
Nix
{ stdenv
|
||
, fetchFromGitLab
|
||
, fetchpatch
|
||
, 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.2";
|
||
|
||
outputs = [ "out" "lib" "dev" "man" ] ++ stdenv.lib.optional pythonSupport "py";
|
||
|
||
src = fetchFromGitLab {
|
||
domain = "gitlab.freedesktop.org";
|
||
owner = pname;
|
||
repo = pname;
|
||
rev = "v${version}";
|
||
sha256 = "0ig3d3j1n0ghaxsgfww6g2hhcdwx8cljwwfmp9jk1nrvkxd6rnmv";
|
||
};
|
||
|
||
patches = [
|
||
# Fix build with gettext 0.20
|
||
(fetchpatch {
|
||
url = "https://gitlab.freedesktop.org/zeitgeist/zeitgeist/commit/b5c00e80189fd59a059a95c4e276728a2492cb89.patch";
|
||
sha256 = "1r7f7j3l2p6xlzxajihgx8bzbc2sxcb9spc9pi26rz9bwmngdyq7";
|
||
})
|
||
];
|
||
|
||
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 = stdenv.lib.optionalString pythonSupport ''
|
||
moveToOutput lib/${python3.libPrefix} "$py"
|
||
'';
|
||
|
||
meta = with stdenv.lib; {
|
||
description = "A service which logs the users’s activities and events";
|
||
homepage = "https://zeitgeist.freedesktop.org/";
|
||
maintainers = with maintainers; [ lethalman worldofpeace ];
|
||
license = licenses.lgpl21Plus;
|
||
platforms = platforms.linux;
|
||
};
|
||
}
|