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