2016-09-25 23:12:50 +02:00
|
|
|
{ stdenv, fetchurl, libnice, pkgconfig, pythonPackages, gstreamer, gst-plugins-base
|
2018-12-02 12:41:15 +01:00
|
|
|
, gst-python, gupnp-igd, gobject-introspection
|
2014-02-02 16:07:03 +01:00
|
|
|
, gst-plugins-good, gst-plugins-bad, gst-libav
|
2012-09-23 19:39:26 +02:00
|
|
|
}:
|
2012-03-15 22:49:54 +01:00
|
|
|
|
2016-09-25 23:12:50 +02:00
|
|
|
let
|
|
|
|
inherit (pythonPackages) python pygobject2;
|
|
|
|
in stdenv.mkDerivation rec {
|
2016-09-28 02:19:51 +02:00
|
|
|
name = "farstream-0.2.8";
|
2018-03-15 13:27:02 +01:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2012-03-15 22:49:54 +01:00
|
|
|
src = fetchurl {
|
2018-03-15 13:27:02 +01:00
|
|
|
url = "https://www.freedesktop.org/software/farstream/releases/farstream/${name}.tar.gz";
|
2016-09-28 02:19:51 +02:00
|
|
|
sha256 = "0249ncd20x5mf884fd8bw75c3118b9fdml837v4fib349xmrqfrb";
|
2012-03-15 22:49:54 +01:00
|
|
|
};
|
|
|
|
|
2018-02-25 03:23:58 +01:00
|
|
|
buildInputs = [ libnice python pygobject2 gupnp-igd libnice ];
|
2012-03-15 22:49:54 +01:00
|
|
|
|
2018-12-02 12:41:15 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig gobject-introspection ];
|
2012-03-15 22:49:54 +01:00
|
|
|
|
2018-03-15 13:27:02 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
gstreamer gst-plugins-base gst-python
|
2014-02-02 16:07:03 +01:00
|
|
|
gst-plugins-good gst-plugins-bad gst-libav
|
2018-03-15 13:27:02 +01:00
|
|
|
];
|
2012-03-15 22:49:54 +01:00
|
|
|
|
2018-10-08 22:38:48 +02:00
|
|
|
meta = with stdenv.lib; {
|
2018-03-15 13:27:02 +01:00
|
|
|
homepage = https://www.freedesktop.org/wiki/Software/Farstream;
|
2012-03-15 22:49:54 +01:00
|
|
|
description = "Audio/Video Communications Framework formely known as farsight";
|
2018-10-08 22:38:48 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl21;
|
2012-03-15 22:49:54 +01:00
|
|
|
};
|
|
|
|
}
|