nixpkgs/pkgs/development/libraries/zeitgeist/default.nix

90 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-11-20 11:18:37 +00:00
, fetchFromGitLab
2019-11-20 11:22:19 +00:00
, fetchpatch
, pkg-config
2019-11-20 11:18:37 +00:00
, glib
, sqlite
, gobject-introspection
, vala
, autoconf
, automake
, libtool
, gettext
, dbus
, gtk3
, json-glib
, librdf_raptor2
, pythonSupport ? true
2020-10-04 05:45:24 +00:00
, python3
}:
stdenv.mkDerivation rec {
2019-02-02 01:55:58 +00:00
pname = "zeitgeist";
version = "1.0.3";
outputs = [ "out" "lib" "dev" "man" ] ++ lib.optional pythonSupport "py";
2018-09-12 21:37:03 +00:00
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
2019-02-02 01:55:58 +00:00
owner = pname;
repo = pname;
2017-10-12 21:31:36 +00:00
rev = "v${version}";
sha256 = "0y6fyzxl5np4yskcxibd0p03h619w9ir907nhf40h02y0pk1kgkp";
};
2019-11-20 11:22:19 +00:00
patches = [
# Fix build with Vala 0.52
2019-11-20 11:22:19 +00:00
(fetchpatch {
url = "https://gitlab.freedesktop.org/zeitgeist/zeitgeist/commit/64ac3a6f94cd299e5e14945dc31b48f009dec152.patch";
sha256 = "Dw1kNE3JoFdmgcQ0eFoFLYvmxlPjXNj56Jkn2meINz4=";
2019-11-20 11:22:19 +00:00
})
];
2018-09-12 21:37:03 +00:00
nativeBuildInputs = [
2019-11-20 11:18:37 +00:00
autoconf
automake
libtool
pkg-config
2019-11-20 11:18:37 +00:00
gettext
gobject-introspection
vala
2020-10-04 05:45:24 +00:00
python3
2018-09-12 21:37:03 +00:00
];
2019-11-20 11:18:37 +00:00
buildInputs = [
2019-11-20 11:18:37 +00:00
glib
sqlite
dbus
gtk3
json-glib
librdf_raptor2
2020-10-04 05:45:24 +00:00
python3.pkgs.rdflib
2019-11-20 11:18:37 +00:00
];
configureFlags = [
"--disable-telepathy"
];
2019-11-20 11:18:37 +00:00
enableParallelBuilding = true;
2018-09-12 21:37:03 +00:00
postPatch = ''
patchShebangs data/ontology2code
'';
2019-11-20 11:18:37 +00:00
preConfigure = ''
NOCONFIGURE=1 ./autogen.sh
'';
postFixup = lib.optionalString pythonSupport ''
2020-10-04 05:45:24 +00:00
moveToOutput lib/${python3.libPrefix} "$py"
'';
meta = with lib; {
2019-11-20 11:18:37 +00:00
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;
};
}