zeitgeist: fix build
This commit is contained in:
parent
109b9e3c05
commit
e80ef11e5e
1 changed files with 14 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchgit, pkgconfig, glib, sqlite, vala_0_38
|
||||
{ stdenv, fetchFromGitLab, pkgconfig, glib, sqlite, gobjectIntrospection, vala
|
||||
, autoconf, automake, libtool, gettext, dbus, telepathy-glib
|
||||
, gtk3, json-glib, librdf_raptor2, dbus-glib
|
||||
, pythonSupport ? true, python2Packages
|
||||
|
@ -8,8 +8,12 @@ stdenv.mkDerivation rec {
|
|||
version = "1.0.1";
|
||||
name = "zeitgeist-${version}";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://anongit.freedesktop.org/git/zeitgeist/zeitgeist";
|
||||
outputs = [ "out" "lib" "dev" "man" ] ++ stdenv.lib.optional pythonSupport "py";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "gitlab.freedesktop.org";
|
||||
owner = "zeitgeist";
|
||||
repo = "zeitgeist";
|
||||
rev = "v${version}";
|
||||
sha256 = "1lgqcqr5h9ba751b7ajp7h2w1bb5qza2w3k1f95j3ab15p7q0q44";
|
||||
};
|
||||
|
@ -18,13 +22,17 @@ stdenv.mkDerivation rec {
|
|||
|
||||
configureFlags = [ "--with-session-bus-services-dir=$(out)/share/dbus-1/services" ];
|
||||
|
||||
nativeBuildInputs = [ autoconf automake libtool pkgconfig gettext vala_0_38 python2Packages.python ];
|
||||
nativeBuildInputs = [
|
||||
autoconf automake libtool pkgconfig gettext gobjectIntrospection vala python2Packages.python
|
||||
];
|
||||
buildInputs = [
|
||||
glib sqlite dbus telepathy-glib dbus-glib
|
||||
gtk3 json-glib librdf_raptor2 python2Packages.rdflib
|
||||
];
|
||||
|
||||
prePatch = "patchShebangs .";
|
||||
postPatch = ''
|
||||
patchShebangs data/ontology2code
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
@ -32,11 +40,9 @@ stdenv.mkDerivation rec {
|
|||
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;
|
||||
homepage = http://zeitgeist.freedesktop.org/;
|
||||
maintainers = with maintainers; [ lethalman ];
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
|
|
Loading…
Reference in a new issue