zeitgeist: fix build
This commit is contained in:
parent
109b9e3c05
commit
e80ef11e5e
@ -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
|
, autoconf, automake, libtool, gettext, dbus, telepathy-glib
|
||||||
, gtk3, json-glib, librdf_raptor2, dbus-glib
|
, gtk3, json-glib, librdf_raptor2, dbus-glib
|
||||||
, pythonSupport ? true, python2Packages
|
, pythonSupport ? true, python2Packages
|
||||||
@ -8,8 +8,12 @@ stdenv.mkDerivation rec {
|
|||||||
version = "1.0.1";
|
version = "1.0.1";
|
||||||
name = "zeitgeist-${version}";
|
name = "zeitgeist-${version}";
|
||||||
|
|
||||||
src = fetchgit {
|
outputs = [ "out" "lib" "dev" "man" ] ++ stdenv.lib.optional pythonSupport "py";
|
||||||
url = "git://anongit.freedesktop.org/git/zeitgeist/zeitgeist";
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
domain = "gitlab.freedesktop.org";
|
||||||
|
owner = "zeitgeist";
|
||||||
|
repo = "zeitgeist";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1lgqcqr5h9ba751b7ajp7h2w1bb5qza2w3k1f95j3ab15p7q0q44";
|
sha256 = "1lgqcqr5h9ba751b7ajp7h2w1bb5qza2w3k1f95j3ab15p7q0q44";
|
||||||
};
|
};
|
||||||
@ -18,13 +22,17 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
configureFlags = [ "--with-session-bus-services-dir=$(out)/share/dbus-1/services" ];
|
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 = [
|
buildInputs = [
|
||||||
glib sqlite dbus telepathy-glib dbus-glib
|
glib sqlite dbus telepathy-glib dbus-glib
|
||||||
gtk3 json-glib librdf_raptor2 python2Packages.rdflib
|
gtk3 json-glib librdf_raptor2 python2Packages.rdflib
|
||||||
];
|
];
|
||||||
|
|
||||||
prePatch = "patchShebangs .";
|
postPatch = ''
|
||||||
|
patchShebangs data/ontology2code
|
||||||
|
'';
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
@ -32,11 +40,9 @@ stdenv.mkDerivation rec {
|
|||||||
moveToOutput lib/${python2Packages.python.libPrefix} "$py"
|
moveToOutput lib/${python2Packages.python.libPrefix} "$py"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
outputs = [ "out" ] ++ stdenv.lib.optional pythonSupport "py";
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A service which logs the users's activities and events";
|
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 ];
|
maintainers = with maintainers; [ lethalman ];
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user