ce85d430bc
Some of these packages need glib-2.30.x, so I commit it to this branch. Add sofia-sip and telepathy-rakia. svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33475
23 lines
742 B
Nix
23 lines
742 B
Nix
{ stdenv, fetchurl, libnice, pkgconfig, python, gstreamer, gst_plugins_base
|
|
, pygobject, gst_python, gupnp_igd }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "farstream-0.1.2";
|
|
src = fetchurl {
|
|
url = "http://www.freedesktop.org/software/farstream/releases/farstream/${name}.tar.gz";
|
|
sha256 = "1nbkbvq959f70zhr03fwdibhs0sbf1k7zmbz9w99vda7gdcl0nps";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|