1{ stdenv, fetchurl, libnice, pkgconfig, python, gstreamer, gst-plugins-base
2, pygobject, gst-python, gupnp_igd
3, gst-plugins-good, gst-plugins-bad, gst-libav
4}:
5
6stdenv.mkDerivation rec {
7 name = "farstream-0.2.4";
8 src = fetchurl {
9 url = "http://www.freedesktop.org/software/farstream/releases/farstream/${name}.tar.gz";
10 sha256 = "0c5vlyiwb799wpby4g9vffiy0nf09gy2cr84ksfy3jwzsxf5n38j";
11 };
12
13 buildInputs = [ libnice python pygobject gupnp_igd libnice ];
14
15 nativeBuildInputs = [ pkgconfig ];
16
17 propagatedBuildInputs = [ gstreamer gst-plugins-base gst-python
18 gst-plugins-good gst-plugins-bad gst-libav
19 ];
20
21 meta = {
22 homepage = http://www.freedesktop.org/wiki/Software/Farstream;
23 description = "Audio/Video Communications Framework formely known as farsight";
24 maintainers = [ stdenv.lib.maintainers.urkud ];
25 };
26}