Author: urkud
Date: Thu Mar 15 21:49:54 2012
New Revision: 33127
URL: https://nixos.org/websvn/nix/?rev=33127&sc=1

Log:
Add farstream

Added:
   nixpkgs/trunk/pkgs/development/libraries/farstream/
   nixpkgs/trunk/pkgs/development/libraries/farstream/default.nix
Modified:
   nixpkgs/trunk/pkgs/top-level/all-packages.nix

Added: nixpkgs/trunk/pkgs/development/libraries/farstream/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/development/libraries/farstream/default.nix      Thu Mar 
15 21:49:54 2012        (r33127)
@@ -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 ];
+  };
+}

Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix       Thu Mar 15 21:41:40 
2012        (r33126)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix       Thu Mar 15 21:49:54 
2012        (r33127)
@@ -3407,6 +3407,8 @@
 
   farsight2 = callPackage ../development/libraries/farsight2 { };
 
+  farstream = callPackage ../development/libraries/farstream { };
+
   fcgi = callPackage ../development/libraries/fcgi { };
 
   ffmpeg = callPackage ../development/libraries/ffmpeg {
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to