Found a new phonon (in 'unstable'), and I think kde-4.4 should be able to link with it.
[nixpkgs-libre.git] / pkgs / development / libraries / gstreamer / default.nix
blob3bb8ea84a2af797826958c793badf66c58ebd93a
1 args: with args;
2 rec {
3   gstreamer = makeOverridable (import ./gstreamer) {
4     inherit (args) fetchurl stdenv perl bison flex
5        pkgconfig python which gtkdoc glib libxml2;
6   };
8   gstPluginsBase = makeOverridable (import ./gst-plugins-base) {
9     inherit gstreamer;
10     inherit (args) fetchurl stdenv pkgconfig python
11       libX11 libXv libXext alsaLib cdparanoia libogg libtheora
12       libvorbis freetype pango liboil gtk which gtkdoc;
13   };
15   gstPluginsGood = makeOverridable (import ./gst-plugins-good) {
16     inherit gstPluginsBase;
17     inherit (args) fetchurl stdenv pkgconfig aalib cairo flac hal
18       libjpeg zlib speex libpng libdv libcaca dbus libiec61883
19       libavc1394 ladspaH taglib gdbm pulseaudio libsoup libcap 
20       libtasn1;
21   };
23   gstFfmpeg = makeOverridable (import ./gst-ffmpeg) {
24     inherit fetchurl stdenv pkgconfig gstPluginsBase bzip2;
25   };
27   gnonlin = makeOverridable (import ./gnonlin) {
28     inherit fetchurl stdenv pkgconfig gstreamer gstPluginsBase;
29   };
31   # Header files are in include/${prefix}/
32   prefix = "gstreamer-0.10";