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