summary refs log tree commit diff
path: root/pkgs/development/libraries/telepathy/glib/default.nix
blob: 615641a8309c0a05748f7606cb9efd9a384fb59d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, dbus_glib, glib, python, pkgconfig, libxslt
, gobjectIntrospection }:

stdenv.mkDerivation rec {
  name = "telepathy-glib-0.22.0";

  src = fetchurl {
    url = "${meta.homepage}/releases/telepathy-glib/${name}.tar.gz";
    sha256 = "0mqrq2azw70rm50vy21acfnzn8mmh0w7dxh87mwr1lyk0jn1n232";
  };

  propagatedBuildInputs = [dbus_glib glib python gobjectIntrospection];

  buildInputs = [pkgconfig libxslt];

  meta = {
    homepage = http://telepathy.freedesktop.org;
  };
}