2008-02-22 04:06:12 +01:00
|
|
|
args: with args;
|
|
|
|
rec {
|
2009-10-06 07:43:51 +02:00
|
|
|
gstreamer = makeOverridable (import ./gstreamer) {
|
2009-04-09 14:43:04 +02:00
|
|
|
inherit (args) fetchurl stdenv perl bison flex
|
|
|
|
pkgconfig python which gtkdoc glib libxml2;
|
|
|
|
};
|
2008-02-22 04:06:12 +01:00
|
|
|
|
2009-10-06 07:43:51 +02:00
|
|
|
gstPluginsBase = makeOverridable (import ./gst-plugins-base) {
|
2009-04-09 15:05:10 +02:00
|
|
|
inherit gstreamer;
|
|
|
|
inherit (args) fetchurl stdenv pkgconfig python
|
|
|
|
libX11 libXv libXext alsaLib cdparanoia libogg libtheora
|
|
|
|
libvorbis freetype pango liboil gtk which gtkdoc;
|
|
|
|
};
|
2008-02-22 04:06:12 +01:00
|
|
|
|
2009-10-06 07:43:51 +02:00
|
|
|
gstPluginsGood = makeOverridable (import ./gst-plugins-good) {
|
2009-04-09 16:55:13 +02:00
|
|
|
inherit gstPluginsBase;
|
|
|
|
inherit (args) fetchurl stdenv pkgconfig aalib cairo flac hal
|
|
|
|
libjpeg zlib speex libpng libdv libcaca dbus libiec61883
|
2009-12-15 10:37:42 +01:00
|
|
|
libavc1394 ladspaH taglib gdbm pulseaudio libsoup libcap
|
|
|
|
libtasn1;
|
2009-04-09 16:55:13 +02:00
|
|
|
};
|
2008-11-11 13:08:28 +01:00
|
|
|
|
2009-10-06 07:43:51 +02:00
|
|
|
gstFfmpeg = makeOverridable (import ./gst-ffmpeg) {
|
2008-11-11 13:08:28 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig gstPluginsBase bzip2;
|
|
|
|
};
|
2008-12-02 13:27:44 +01:00
|
|
|
|
2009-10-06 07:43:51 +02:00
|
|
|
gnonlin = makeOverridable (import ./gnonlin) {
|
2008-12-02 13:27:44 +01:00
|
|
|
inherit fetchurl stdenv pkgconfig gstreamer gstPluginsBase;
|
|
|
|
};
|
2010-02-13 15:03:07 +01:00
|
|
|
|
|
|
|
# Header files are in include/${prefix}/
|
|
|
|
prefix = "gstreamer-0.10";
|
2008-02-22 04:06:12 +01:00
|
|
|
}
|