76999cc40e
This makes the command ‘nix-env -qa -f. --arg config '{skipAliases = true;}'’ work in Nixpkgs. Misc... - qtikz: use libsForQt5.callPackage This ensures we get the right poppler. - rewrites: docbook5_xsl -> docbook_xsl_ns docbook_xml_xslt -> docbook_xsl diffpdf: fixup
45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{ stdenv, fetchgit, pkgconfig, glib, sqlite, vala_0_38
|
|
, autoconf, automake, libtool, gettext, dbus, telepathy-glib
|
|
, gtk3, json-glib, librdf_raptor2, dbus-glib
|
|
, pythonSupport ? true, python2Packages
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.0.1";
|
|
name = "zeitgeist-${version}";
|
|
|
|
src = fetchgit {
|
|
url = "git://anongit.freedesktop.org/git/zeitgeist/zeitgeist";
|
|
rev = "v${version}";
|
|
sha256 = "1lgqcqr5h9ba751b7ajp7h2w1bb5qza2w3k1f95j3ab15p7q0q44";
|
|
};
|
|
|
|
preConfigure = "NOCONFIGURE=1 ./autogen.sh";
|
|
|
|
configureFlags = [ "--with-session-bus-services-dir=$(out)/share/dbus-1/services" ];
|
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkgconfig gettext vala_0_38 python2Packages.python ];
|
|
buildInputs = [
|
|
glib sqlite dbus telepathy-glib dbus-glib
|
|
gtk3 json-glib librdf_raptor2 python2Packages.rdflib
|
|
];
|
|
|
|
prePatch = "patchShebangs .";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postFixup = stdenv.lib.optionalString pythonSupport ''
|
|
moveToOutput lib/${python2Packages.python.libPrefix} "$py"
|
|
'';
|
|
|
|
outputs = [ "out" ] ++ stdenv.lib.optional pythonSupport "py";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A service which logs the users's activities and events";
|
|
homepage = https://launchpad.net/zeitgeist;
|
|
maintainers = with maintainers; [ lethalman ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|