summary refs log tree commit diff
path: root/pkgs/development/libraries/farstream
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-15 21:49:54 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-15 21:49:54 +0000
commit0239640deff9607ffaf0263cd484add8fa202cb8 (patch)
tree17927113d5df99da232ab880ec3e55769c79ccd8 /pkgs/development/libraries/farstream
parent1677493301fa915908e8b2b5dd7e287a4104203a (diff)
Add farstream
svn path=/nixpkgs/trunk/; revision=33127
Diffstat (limited to 'pkgs/development/libraries/farstream')
-rw-r--r--pkgs/development/libraries/farstream/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/farstream/default.nix b/pkgs/development/libraries/farstream/default.nix
new file mode 100644
index 0000000000000..7d5e7148620ed
--- /dev/null
+++ b/pkgs/development/libraries/farstream/default.nix
@@ -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 ];
+  };
+}