2012-03-13 20:06:54 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libxslt, telepathy_glib, libxml2, dbus_glib
|
|
|
|
, sqlite, libsoup, libnice, gnutls }:
|
2008-01-28 20:49:44 +01:00
|
|
|
|
2009-04-22 01:18:09 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-06-13 09:09:19 +02:00
|
|
|
name = "telepathy-gabble-0.16.0";
|
2008-01-28 20:49:44 +01:00
|
|
|
|
2009-04-22 01:18:09 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/releases/telepathy-gabble/${name}.tar.gz";
|
2012-06-13 09:09:19 +02:00
|
|
|
sha256 = "0fk65f7q75z3wm5h4wad7g5sm2j6r8v2845b74ycl29br78ki2hf";
|
2009-04-22 01:18:09 +02:00
|
|
|
};
|
2008-01-28 20:49:44 +01:00
|
|
|
|
2012-03-13 20:06:54 +01:00
|
|
|
buildNativeInputs = [pkgconfig libxslt];
|
|
|
|
buildInputs = [ libxml2 dbus_glib sqlite libsoup libnice telepathy_glib gnutls ];
|
|
|
|
|
|
|
|
configureFlags = "--with-ca-certificates=/etc/ca-bundle.crt";
|
2009-04-22 01:18:09 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://telepathy.freedesktop.org;
|
|
|
|
};
|
2008-01-28 20:49:44 +01:00
|
|
|
}
|