mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Add telepathy-logger
svn path=/nixpkgs/trunk/; revision=33457
This commit is contained in:
parent
613a8ecaf9
commit
a87c8d9bee
@ -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.mainrainers.urkud ];
|
||||
platforms = stdenv.lib.platforms.gnu; # Arbitrary choice
|
||||
};
|
||||
}
|
@ -7396,6 +7396,8 @@ let
|
||||
inherit (pkgs.gnome) libsoup;
|
||||
};
|
||||
|
||||
telepathy_logger = callPackage ../applications/networking/instant-messengers/telepathy/logger {};
|
||||
|
||||
telepathy_mission_control = callPackage ../applications/networking/instant-messengers/telepathy/mission-control { };
|
||||
|
||||
telepathy_salut = callPackage ../applications/networking/instant-messengers/telepathy/salut {};
|
||||
|
Loading…
Reference in New Issue
Block a user