summary refs log tree commit diff
path: root/pkgs/development/libraries/farstream
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2012-09-23 21:39:26 +0400
committerMichael Raskin <7c6f434c@mail.ru>2012-09-23 21:39:26 +0400
commit37418b3f704e9f37a24175f4a3128e15310b414f (patch)
treedf49bc9001a60744adc74ce760694d22305b8293 /pkgs/development/libraries/farstream
parent04cacaf628f7dc17a123730d63a58e84f24b58d5 (diff)
downloadnixpkgs-37418b3f704e9f37a24175f4a3128e15310b414f.tar
nixpkgs-37418b3f704e9f37a24175f4a3128e15310b414f.tar.gz
nixpkgs-37418b3f704e9f37a24175f4a3128e15310b414f.tar.bz2
nixpkgs-37418b3f704e9f37a24175f4a3128e15310b414f.tar.lz
nixpkgs-37418b3f704e9f37a24175f4a3128e15310b414f.tar.xz
nixpkgs-37418b3f704e9f37a24175f4a3128e15310b414f.tar.zst
nixpkgs-37418b3f704e9f37a24175f4a3128e15310b414f.zip
Add farstream support to gajim
Diffstat (limited to 'pkgs/development/libraries/farstream')
-rw-r--r--pkgs/development/libraries/farstream/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/libraries/farstream/default.nix b/pkgs/development/libraries/farstream/default.nix
index b2b8ca6255b..3babcb82833 100644
--- a/pkgs/development/libraries/farstream/default.nix
+++ b/pkgs/development/libraries/farstream/default.nix
@@ -1,5 +1,7 @@
 { stdenv, fetchurl, libnice, pkgconfig, python, gstreamer, gst_plugins_base
-, pygobject, gst_python, gupnp_igd }:
+, pygobject, gst_python, gupnp_igd
+, gst_plugins_good, gst_plugins_bad, gst_ffmpeg
+}:
 
 stdenv.mkDerivation rec {
   name = "farstream-0.1.2";
@@ -8,11 +10,13 @@ stdenv.mkDerivation rec {
     sha256 = "1nbkbvq959f70zhr03fwdibhs0sbf1k7zmbz9w99vda7gdcl0nps";
   };
 
-  buildInputs = [ libnice python pygobject gst_python gupnp_igd ];
+  buildInputs = [ libnice python pygobject gupnp_igd ];
 
   buildNativeInputs = [ pkgconfig ];
 
-  propagatedBuildInputs = [ gstreamer gst_plugins_base ];
+  propagatedBuildInputs = [ gstreamer gst_plugins_base gst_python 
+    gst_plugins_good gst_plugins_bad gst_ffmpeg
+    ];
 
   meta = {
     homepage = http://www.freedesktop.org/wiki/Software/Farstream;