about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/telepathy
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-31 20:01:40 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-31 20:01:40 +0000
commit5299c1f6fb7cc9fa5e6dad9107ccab1417179731 (patch)
tree52d7d482e7310407aa3f48dfd757ec13a6ce413d /pkgs/applications/networking/instant-messengers/telepathy
parent3f44fb8f2f1ab6bb0571eef0fe16748d951b91f1 (diff)
parentd789eb6a05b5eb2bd3c46798a1e7babfcffe1413 (diff)
svn merge ^/nixpkgs/trunk backups/glib-2.30-take2@33502
- 1 conflict (gnome-doc-utils)
- final merge before --reintegrate

svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33500
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/telepathy')
-rw-r--r--pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix b/pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix
new file mode 100644
index 0000000000000..27d41140be0cd
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, dbus_glib, libxml2, sqlite, telepathy_glib, pkgconfig
+, intltool, libxslt }:
+
+stdenv.mkDerivation rec {
+  project = "telepathy-logger";
+  name = "${project}-0.2.12";
+
+  src = fetchurl {
+    url = "http://telepathy.freedesktop.org/releases/${project}/${name}.tar.bz2";
+    sha256 = "1681m1j6vqzy089fnbfpz9i8jsg64fq6x6kf25b9p2090dnqrkj3";
+  };
+
+  buildInputs = [ dbus_glib libxml2 sqlite telepathy_glib pkgconfig intltool ];
+
+  buildNativeInputs = [ libxslt ];
+
+  configureFlags = "--enable-call";
+
+  meta = {
+    description = "Logger service for Telepathy framework";
+    homepage = http://telepathy.freedesktop.org/wiki/Logger ;
+    maintainers = [ stdenv.lib.maintainers.urkud ];
+    platforms = stdenv.lib.platforms.gnu; # Arbitrary choice
+  };
+}