Add libsoup as gstreamer dependency

svn path=/nixpkgs/trunk/; revision=16543
This commit is contained in:
Michael Raskin
2009-08-03 04:55:30 +00:00
parent dee8937ae7
commit fd557980cd
3 changed files with 6 additions and 3 deletions
@@ -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 {
@@ -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";