2018-02-25 02:23:58 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, telepathy-glib, farstream, dbus-glib }:
|
2012-03-15 21:50:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-12-18 09:05:57 +00:00
|
|
|
name = "${pname}-0.6.2";
|
2012-03-15 21:50:02 +00:00
|
|
|
pname = "telepathy-farstream";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz";
|
2015-12-18 09:05:57 +00:00
|
|
|
sha256 = "02ky12bb92prr5f6xmvmfq4yz2lj33li6nj4829a98hk5pr9k83g";
|
2012-03-15 21:50:02 +00:00
|
|
|
};
|
|
|
|
|
2018-02-25 02:23:58 +00:00
|
|
|
propagatedBuildInputs = [ dbus-glib telepathy-glib farstream ];
|
2015-12-18 09:05:57 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-08-02 17:06:29 +01:00
|
|
|
|
2018-10-27 14:45:24 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "GObject-based C library that uses Telepathy GLib, Farstream and GStreamer to handle the media streaming part of channels of type Call";
|
|
|
|
homepage = https://telepathy.freedesktop.org/wiki/Components/Telepathy-Farstream/;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl21;
|
2016-08-02 17:06:29 +01:00
|
|
|
};
|
2012-03-15 21:50:02 +00:00
|
|
|
}
|