2016-09-25 22:12:39 +01:00
|
|
|
{ stdenv, fetchurl, libnice, pkgconfig, pythonPackages, gstreamer, gst_plugins_base
|
|
|
|
, gst_python, gupnp_igd }:
|
2009-12-27 15:27:45 +00:00
|
|
|
|
2016-09-25 22:12:39 +01:00
|
|
|
let
|
|
|
|
inherit (pythonPackages) python pygobject2;
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2016-09-11 22:24:51 +01: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
|
|
|
|
2012-03-14 22:44:52 +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
|
|
|
};
|
|
|
|
}
|