Add farstream

svn path=/nixpkgs/trunk/; revision=33127
This commit is contained in:
Yury G. Kudryashov 2012-03-15 21:49:54 +00:00
parent 1677493301
commit 0239640def
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl, libnice, pkgconfig, python, gstreamer, gst_plugins_base
, pygobject, gst_python, gupnp_igd }:
stdenv.mkDerivation rec {
name = "farstream-0.1.1";
src = fetchurl {
url = "http://www.freedesktop.org/software/farstream/releases/farstream/${name}.tar.gz";
sha256 = "0lmdz7ijpgrc0zbr11jp3msvz44p809scx2m56bk5l5x1xrs123v";
};
buildInputs = [ libnice python pygobject gst_python gupnp_igd ];
buildNativeInputs = [ pkgconfig ];
propagatedBuildInputs = [ gstreamer gst_plugins_base ];
meta = {
homepage = http://www.freedesktop.org/wiki/Software/Farstream;
description = "Audio/Video Communications Framework formely known as farsight";
maintainers = [ stdenv.lib.maintainers.urkud ];
};
}

View file

@ -3407,6 +3407,8 @@ let
farsight2 = callPackage ../development/libraries/farsight2 { };
farstream = callPackage ../development/libraries/farstream { };
fcgi = callPackage ../development/libraries/fcgi { };
ffmpeg = callPackage ../development/libraries/ffmpeg {