ce85d430bc
Some of these packages need glib-2.30.x, so I commit it to this branch. Add sofia-sip and telepathy-rakia. svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33475
21 lines
493 B
Nix
21 lines
493 B
Nix
{ stdenv, fetchurl, dbus_glib, glib, python, pkgconfig, libxslt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "telepathy-glib-0.17.7";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/releases/telepathy-glib/${name}.tar.gz";
|
|
sha256 = "1brzw0cqawcyh7rffzbmydzbymrrsmzf8rksgamiqpwsdvcnksxz";
|
|
};
|
|
|
|
propagatedBuildInputs = [dbus_glib glib python];
|
|
|
|
buildInputs = [pkgconfig libxslt];
|
|
|
|
patches = [ ./fix-pkgconfig.patch ];
|
|
|
|
meta = {
|
|
homepage = http://telepathy.freedesktop.org;
|
|
};
|
|
}
|