2014-02-02 16:07:03 +01:00
|
|
|
{ stdenv, fetchurl, libnice, pkgconfig, python, gstreamer, gst-plugins-base
|
|
|
|
, pygobject, gst-python, gupnp_igd
|
|
|
|
, gst-plugins-good, gst-plugins-bad, gst-libav
|
2012-09-23 19:39:26 +02:00
|
|
|
}:
|
2012-03-15 22:49:54 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-02-02 16:07:03 +01:00
|
|
|
name = "farstream-0.2.3";
|
2012-03-15 22:49:54 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.freedesktop.org/software/farstream/releases/farstream/${name}.tar.gz";
|
2014-02-02 16:07:03 +01:00
|
|
|
sha256 = "15h4qv30ql3rnmlm4ac3h7rplvj7125z14fbfh1zrkajjaa3bxdz";
|
2012-03-15 22:49:54 +01:00
|
|
|
};
|
|
|
|
|
2013-02-23 22:20:42 +01:00
|
|
|
buildInputs = [ libnice python pygobject gupnp_igd libnice ];
|
2012-03-15 22:49:54 +01:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-03-15 22:49:54 +01:00
|
|
|
|
2014-02-02 16:07:03 +01:00
|
|
|
propagatedBuildInputs = [ gstreamer gst-plugins-base gst-python
|
|
|
|
gst-plugins-good gst-plugins-bad gst-libav
|
2012-09-23 19:39:26 +02:00
|
|
|
];
|
2012-03-15 22:49:54 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.freedesktop.org/wiki/Software/Farstream;
|
|
|
|
description = "Audio/Video Communications Framework formely known as farsight";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
|
|
};
|
|
|
|
}
|