summary refs log tree commit diff
path: root/pkgs/development/libraries/telepathy/farstream/default.nix
blob: 1247d9ffa843ece864f562dd0f3e7796248f4e16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, pkgconfig, telepathy-glib, farstream, dbus-glib }:

stdenv.mkDerivation rec {
  name = "${pname}-0.6.2";
  pname = "telepathy-farstream";

  src = fetchurl {
    url = "https://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz";
    sha256 = "02ky12bb92prr5f6xmvmfq4yz2lj33li6nj4829a98hk5pr9k83g";
  };

  propagatedBuildInputs = [ dbus-glib telepathy-glib farstream ];
  nativeBuildInputs = [ pkgconfig ];

  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;
  };
}