2017-02-26 20:25:29 +00:00
|
|
|
{ stdenv, fetchurl, libnice, pkgconfig, python2Packages, gstreamer, gst-plugins-base
|
2017-02-26 19:30:00 +00:00
|
|
|
, gst-python, gupnp_igd }:
|
2009-12-27 15:27:45 +00:00
|
|
|
|
2016-09-25 22:12:39 +01:00
|
|
|
let
|
2016-11-09 10:05:53 +00:00
|
|
|
inherit (python2Packages) python pygobject2;
|
2016-09-25 22:12:39 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2012-03-13 19:06:32 +00:00
|
|
|
name = "farsight2-0.0.31";
|
2009-12-27 15:27:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-11-17 16:27:48 +00:00
|
|
|
url = "http://farsight.freedesktop.org/releases/farsight2/${name}.tar.gz";
|
2012-03-13 19:06:32 +00:00
|
|
|
sha256 = "16qz4x14rdycm4nrn5wx6k2y22fzrazsbmihrxdwafx9cyf23kjm";
|
2009-12-27 15:27:45 +00:00
|
|
|
};
|
|
|
|
|
2017-02-26 19:30:00 +00:00
|
|
|
buildInputs = [ libnice python pygobject2 gst-python gupnp_igd ];
|
2009-12-27 15:27:45 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2009-12-27 15:27:45 +00:00
|
|
|
|
2017-02-26 20:25:29 +00:00
|
|
|
propagatedBuildInputs = [ gstreamer gst-plugins-base ];
|
2009-12-27 15:27:45 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://farsight.freedesktop.org/wiki/;
|
|
|
|
description = "Audio/Video Communications Framework";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-12-27 15:27:45 +00:00
|
|
|
};
|
|
|
|
}
|