Add telepathy-farstream

svn path=/nixpkgs/trunk/; revision=33128
This commit is contained in:
Yury G. Kudryashov 2012-03-15 21:50:02 +00:00
parent 0239640def
commit d477e709c8
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{ stdenv, fetchurl, telepathy_glib, farstream, gst_plugins_base, dbus_glib
, pkgconfig, libxslt, python, gstreamer, gst_python, pygobject }:
stdenv.mkDerivation rec {
name = "${pname}-0.2.2";
pname = "telepathy-farstream";
src = fetchurl {
url = "http://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz";
sha256 = "0gdcf50dz1hf22az5jqal2jlzbb1nl2cim579kv3q87b8lq9aplv";
};
buildInputs = [ gst_plugins_base gst_python pygobject ];
propagatedBuildInputs = [ dbus_glib farstream telepathy_glib gstreamer ];
buildNativeInputs = [ pkgconfig python libxslt];
}

View File

@ -4676,6 +4676,8 @@ let
telepathy_farsight = callPackage ../development/libraries/telepathy/farsight { };
telepathy_farstream = callPackage ../development/libraries/telepathy/farstream {};
telepathy_qt = callPackage ../development/libraries/telepathy/qt { };
tk = callPackage ../development/libraries/tk { };