summary refs log tree commit diff
path: root/pkgs/development/libraries/telepathy/farstream
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-15 21:50:02 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-15 21:50:02 +0000
commitd477e709c83c44c3e050823b310e3429798680a8 (patch)
treeb256f479f22f52526fd07160a9f0885ef5aa79cb /pkgs/development/libraries/telepathy/farstream
parent0239640deff9607ffaf0263cd484add8fa202cb8 (diff)
downloadnixlib-d477e709c83c44c3e050823b310e3429798680a8.tar
nixlib-d477e709c83c44c3e050823b310e3429798680a8.tar.gz
nixlib-d477e709c83c44c3e050823b310e3429798680a8.tar.bz2
nixlib-d477e709c83c44c3e050823b310e3429798680a8.tar.lz
nixlib-d477e709c83c44c3e050823b310e3429798680a8.tar.xz
nixlib-d477e709c83c44c3e050823b310e3429798680a8.tar.zst
nixlib-d477e709c83c44c3e050823b310e3429798680a8.zip
Add telepathy-farstream
svn path=/nixpkgs/trunk/; revision=33128
Diffstat (limited to 'pkgs/development/libraries/telepathy/farstream')
-rw-r--r--pkgs/development/libraries/telepathy/farstream/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/libraries/telepathy/farstream/default.nix b/pkgs/development/libraries/telepathy/farstream/default.nix
new file mode 100644
index 000000000000..a9b072d2152e
--- /dev/null
+++ b/pkgs/development/libraries/telepathy/farstream/default.nix
@@ -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];
+}