2008-02-21 19:06:12 -08:00
|
|
|
args: with args;
|
|
|
|
rec {
|
2009-04-09 05:43:04 -07:00
|
|
|
gstreamer = import ./gstreamer {
|
|
|
|
inherit (args) fetchurl stdenv perl bison flex
|
|
|
|
pkgconfig python which gtkdoc glib libxml2;
|
|
|
|
};
|
2008-02-21 19:06:12 -08:00
|
|
|
|
2009-04-09 06:05:10 -07:00
|
|
|
gstPluginsBase = import ./gst-plugins-base {
|
|
|
|
inherit gstreamer;
|
|
|
|
inherit (args) fetchurl stdenv pkgconfig python
|
|
|
|
libX11 libXv libXext alsaLib cdparanoia libogg libtheora
|
|
|
|
libvorbis freetype pango liboil gtk which gtkdoc;
|
|
|
|
};
|
2008-02-21 19:06:12 -08:00
|
|
|
|
2009-04-09 07:55:13 -07:00
|
|
|
gstPluginsGood = import ./gst-plugins-good {
|
|
|
|
inherit gstPluginsBase;
|
|
|
|
inherit (args) fetchurl stdenv pkgconfig aalib cairo flac hal
|
|
|
|
libjpeg zlib speex libpng libdv libcaca dbus libiec61883
|
2009-08-02 21:55:30 -07:00
|
|
|
libavc1394 ladspaH taglib gdbm pulseaudio libsoup;
|
2009-04-09 07:55:13 -07:00
|
|
|
};
|
2008-11-11 04:08:28 -08:00
|
|
|
|
|
|
|
gstFfmpeg = import ./gst-ffmpeg {
|
|
|
|
inherit fetchurl stdenv pkgconfig gstPluginsBase bzip2;
|
|
|
|
};
|
2008-12-02 04:27:44 -08:00
|
|
|
|
|
|
|
gnonlin = import ./gnonlin {
|
|
|
|
inherit fetchurl stdenv pkgconfig gstreamer gstPluginsBase;
|
|
|
|
};
|
2008-02-21 19:06:12 -08:00
|
|
|
}
|