mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 12:22:37 +03:00
zeitgeist: new package
Zeitgeist is a service which logs the users's activities and events https://launchpad.net/zeitgeist
This commit is contained in:
parent
b3fe998fdb
commit
63cdda1f4e
10
pkgs/development/libraries/zeitgeist/dbus_glib.patch
Normal file
10
pkgs/development/libraries/zeitgeist/dbus_glib.patch
Normal file
@ -0,0 +1,10 @@
|
||||
--- configure.ac 2014-01-27 22:45:42.000000000 +0100
|
||||
+++ configure.ac.new 2014-05-02 17:25:45.813491239 +0200
|
||||
@@ -151,6 +151,7 @@
|
||||
gio-2.0 >= $GLIB_REQUIRED
|
||||
gio-unix-2.0 >= $GLIB_REQUIRED
|
||||
gtk+-3.0 >= $GTK_REQUIRED
|
||||
+ dbus-glib-1
|
||||
json-glib-1.0 >= $JSON_GLIB_REQUIRED"
|
||||
|
||||
AC_ARG_ENABLE([datahub],
|
38
pkgs/development/libraries/zeitgeist/default.nix
Normal file
38
pkgs/development/libraries/zeitgeist/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ stdenv, fetchurl, pkgconfig, glib, sqlite, gnome3, vala
|
||||
, intltool, libtool, python, dbus_libs, telepathy_glib
|
||||
, gtk3, json_glib, librdf_raptor2, pythonPackages, dbus_glib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "zeitgeist-0.0.14";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/seiflotfy/zeitgeist/archive/v0.9.15.tar.gz";
|
||||
sha256 = "07pnc7kmjpd0ncm32z6s3ny5p4zl52v9lld0n0f8sp6cw87k12p0";
|
||||
};
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0";
|
||||
|
||||
configureScript = "./autogen.sh";
|
||||
|
||||
configureFlags = [ "--with-session-bus-services-dir=$(out)/share/dbus-1/services" ];
|
||||
|
||||
buildInputs = [ pkgconfig glib sqlite gnome3.gnome_common intltool
|
||||
libtool python dbus_libs telepathy_glib vala dbus_glib
|
||||
gtk3 json_glib librdf_raptor2 pythonPackages.rdflib ];
|
||||
|
||||
prePatch = "patchShebangs .";
|
||||
|
||||
patches = [ ./dbus_glib.patch ];
|
||||
|
||||
patchFlags = [ "-p0" ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://launchpad.net/zeitgeist;
|
||||
description = "Zeitgeist is a service which logs the users's activities and events";
|
||||
maintainers = with maintainers; [ lethalman ];
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -6155,6 +6155,8 @@ let
|
||||
inherit ncurses flex bison autoconf automake m4 coreutils;
|
||||
};
|
||||
|
||||
zeitgeist = callPackage ../development/libraries/zeitgeist { };
|
||||
|
||||
zlib = callPackage ../development/libraries/zlib {
|
||||
fetchurl = fetchurlBoot;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user