add libtheora, speex, vorbis to ffmpeg

svn path=/nixpkgs/trunk/; revision=21067
This commit is contained in:
Armijn Hemel
2010-04-14 09:45:22 +00:00
parent 75fb2e32db
commit fdc760a3f6
2 changed files with 8 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, faad2}:
{stdenv, fetchurl, faad2, libtheora, speex, libvorbis}:
stdenv.mkDerivation {
name = "ffmpeg-0.5.1";
@@ -19,9 +19,12 @@ stdenv.mkDerivation {
--disable-ffplay
--enable-libfaad
--enable-shared
--enable-libtheora
--enable-libvorbis
--enable-libspeex
'';
buildInputs = [faad2];
buildInputs = [faad2 libtheora speex libvorbis];
meta = {
homepage = http://www.ffmpeg.org/;