summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/telepathy/idle/default.nix
blob: 16a31f6f3ba1c83aaaad213691a859ec6bcbc2ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, glib, pkgconfig, dbus_glib, telepathy_glib, libxslt }:

stdenv.mkDerivation rec {
  pname = "telepathy-idle";
  version = "0.2.0";
  name = "${pname}-${version}";

  src = fetchurl {
    url = "http://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz";
    sha256 = "1argdzbif1vdmwp5vqbgkadq9ancjmgdm2ncp0qfckni715ss4rh";
  };

  buildInputs = [ pkgconfig glib telepathy_glib dbus_glib libxslt ];

  meta = {
    description = "IRC connection manager for the Telepathy framework";
    license = stdenv.lib.licenses.lgpl21;
    platforms = stdenv.lib.platforms.gnu;
  };
}