nixpkgs/pkgs/development/libraries/gstreamer/default.nix
Eelco Dolstra 0fcf6e1f40 * Added xfce4-mixer. This requires gstreamer and gst-plugins-base.
* Allow gst-plugins-base to be built with a minimal set of dependencies
  (to prevent dependency bloat in Xfce).
* Updated gstreamer.

svn path=/nixpkgs/trunk/; revision=24207
2010-10-10 22:34:48 +00:00

19 lines
373 B
Nix

{ callPackage, pkgs }:
rec {
gstreamer = callPackage ./gstreamer {
flex = pkgs.flex2535;
};
gstPluginsBase = callPackage ./gst-plugins-base { };
gstPluginsGood = callPackage ./gst-plugins-good { };
gstFfmpeg = callPackage ./gst-ffmpeg { };
gnonlin = callPackage ./gnonlin { };
# Header files are in include/${prefix}/
prefix = "gstreamer-0.10";
}