Adding xvid, to ffmpeg and mplayer.

svn path=/nixpkgs/trunk/; revision=21469
This commit is contained in:
Lluís Batlle i Rossell
2010-04-30 21:47:09 +00:00
parent fe7945b7fb
commit b3870f0148
4 changed files with 34 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, faad2, libtheora, speex, libvorbis, x264, pkgconfig}:
{stdenv, fetchurl, faad2, libtheora, speex, libvorbis, x264, pkgconfig, xvidcore}:
stdenv.mkDerivation {
name = "ffmpeg-0.5.1";
@@ -23,9 +23,10 @@ stdenv.mkDerivation {
--enable-libvorbis
--enable-libspeex
--enable-libx264
--enable-libxvid
'';
buildInputs = [faad2 libtheora speex libvorbis x264 pkgconfig];
buildInputs = [faad2 libtheora speex libvorbis x264 pkgconfig xvidcore];
meta = {
homepage = http://www.ffmpeg.org/;