summary refs log tree commit diff
path: root/pkgs/development/libraries/gstreamer
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2009-08-03 04:55:30 +0000
committerMichael Raskin <7c6f434c@mail.ru>2009-08-03 04:55:30 +0000
commitfd557980cd49bd53bab257ac5860bf56e0bed3d6 (patch)
tree75886633bf98b0b3a109b601034c0754956eed20 /pkgs/development/libraries/gstreamer
parentdee8937ae75434b7a7fe7c1acb916432c5de04f2 (diff)
downloadnixlib-fd557980cd49bd53bab257ac5860bf56e0bed3d6.tar
nixlib-fd557980cd49bd53bab257ac5860bf56e0bed3d6.tar.gz
nixlib-fd557980cd49bd53bab257ac5860bf56e0bed3d6.tar.bz2
nixlib-fd557980cd49bd53bab257ac5860bf56e0bed3d6.tar.lz
nixlib-fd557980cd49bd53bab257ac5860bf56e0bed3d6.tar.xz
nixlib-fd557980cd49bd53bab257ac5860bf56e0bed3d6.tar.zst
nixlib-fd557980cd49bd53bab257ac5860bf56e0bed3d6.zip
Add libsoup as gstreamer dependency
svn path=/nixpkgs/trunk/; revision=16543
Diffstat (limited to 'pkgs/development/libraries/gstreamer')
-rw-r--r--pkgs/development/libraries/gstreamer/default.nix2
-rw-r--r--pkgs/development/libraries/gstreamer/gst-plugins-good/default.nix6
2 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/libraries/gstreamer/default.nix b/pkgs/development/libraries/gstreamer/default.nix
index 2661f8caaa54..a765510e7c0a 100644
--- a/pkgs/development/libraries/gstreamer/default.nix
+++ b/pkgs/development/libraries/gstreamer/default.nix
@@ -16,7 +16,7 @@ rec {
     inherit gstPluginsBase;
     inherit (args) fetchurl stdenv pkgconfig aalib cairo flac hal
       libjpeg zlib speex libpng libdv libcaca dbus libiec61883
-      libavc1394 ladspaH taglib gdbm pulseaudio;
+      libavc1394 ladspaH taglib gdbm pulseaudio libsoup;
   };
 
   gstFfmpeg = import ./gst-ffmpeg {
diff --git a/pkgs/development/libraries/gstreamer/gst-plugins-good/default.nix b/pkgs/development/libraries/gstreamer/gst-plugins-good/default.nix
index b575c2536a14..8cb0f1017288 100644
--- a/pkgs/development/libraries/gstreamer/gst-plugins-good/default.nix
+++ b/pkgs/development/libraries/gstreamer/gst-plugins-good/default.nix
@@ -1,6 +1,8 @@
 { fetchurl, stdenv, pkgconfig, gstPluginsBase, aalib, cairo
 , flac , hal, libjpeg, zlib, speex, libpng, libdv, libcaca, dbus
-, libiec61883, libavc1394, ladspaH, taglib, gdbm, pulseaudio }:
+, libiec61883, libavc1394, ladspaH, taglib, gdbm, pulseaudio
+, libsoup
+}:
 
 stdenv.mkDerivation rec {
   name = "gst-plugins-good-0.10.14";
@@ -12,7 +14,7 @@ stdenv.mkDerivation rec {
 
   propagatedBuildInputs = [gstPluginsBase aalib cairo flac hal libjpeg
     zlib speex libpng libdv libcaca dbus.libs libiec61883 libavc1394 ladspaH
-    taglib gdbm pulseaudio];
+    taglib gdbm pulseaudio libsoup];
   buildInputs = [pkgconfig];
 
   configureFlags = "--enable-ladspa";