mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
add libtheora, speex, vorbis to ffmpeg
svn path=/nixpkgs/trunk/; revision=21067
This commit is contained in:
parent
75fb2e32db
commit
fdc760a3f6
|
@ -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/;
|
||||
|
|
|
@ -3608,7 +3608,7 @@ let
|
|||
};
|
||||
|
||||
ffmpeg = import ../development/libraries/ffmpeg {
|
||||
inherit fetchurl stdenv faad2;
|
||||
inherit fetchurl stdenv faad2 libvorbis speex libtheora;
|
||||
};
|
||||
|
||||
fftw = import ../development/libraries/fftw {
|
||||
|
@ -8007,7 +8007,8 @@ let
|
|||
inherit fetchurl stdenv lib cmake pkgconfig freetype lcms libtiff libxml2
|
||||
cairo python cups fontconfig zlib libjpeg libpng;
|
||||
inherit (gnome) libart_lgpl;
|
||||
inherit (xlibs) libXaw libXext libX11 libXtst libXi libXinerama;
|
||||
inherit (xlibs) libXau libXaw libXdmcp libXext libX11 libXtst libXi libXinerama libXrender;
|
||||
inherit (xorg) pixman libpthreadstubs;
|
||||
qt = qt3;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue