ffmpeg: Add previous version to fix fuppes.
svn path=/nixpkgs/trunk/; revision=27980
This commit is contained in:
parent
c7f7be4fae
commit
0690f20ea8
73
pkgs/development/libraries/ffmpeg/0.6.90.nix
Normal file
73
pkgs/development/libraries/ffmpeg/0.6.90.nix
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, yasm
|
||||||
|
, mp3Support ? true, lame ? null
|
||||||
|
, speexSupport ? true, speex ? null
|
||||||
|
, theoraSupport ? true, libtheora ? null
|
||||||
|
, vorbisSupport ? true, libvorbis ? null
|
||||||
|
, vpxSupport ? false, libvpx ? null
|
||||||
|
, x264Support ? true, x264 ? null
|
||||||
|
, xvidSupport ? true, xvidcore ? null
|
||||||
|
, faacSupport ? false, faac ? null
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert speexSupport -> speex != null;
|
||||||
|
assert theoraSupport -> libtheora != null;
|
||||||
|
assert vorbisSupport -> libvorbis != null;
|
||||||
|
assert vpxSupport -> libvpx != null;
|
||||||
|
assert x264Support -> x264 != null;
|
||||||
|
assert xvidSupport -> xvidcore != null;
|
||||||
|
assert faacSupport -> faac != null;
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ffmpeg-0.6.90-rc0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://www.ffmpeg.org/releases/${name}.tar.bz2";
|
||||||
|
sha256 = "1xn9fmpq2cbf1bx1gxbxnas8fq02gb8bmvvg5vjjxyw9lz5zw49f";
|
||||||
|
};
|
||||||
|
|
||||||
|
# `--enable-gpl' (as well as the `postproc' and `swscale') mean that
|
||||||
|
# the resulting library is GPL'ed, so it can only be used in GPL'ed
|
||||||
|
# applications.
|
||||||
|
configureFlags = [
|
||||||
|
"--enable-gpl"
|
||||||
|
"--enable-postproc"
|
||||||
|
"--enable-swscale"
|
||||||
|
"--disable-ffserver"
|
||||||
|
"--disable-ffplay"
|
||||||
|
"--enable-shared"
|
||||||
|
"--enable-runtime-cpudetect"
|
||||||
|
]
|
||||||
|
++ stdenv.lib.optional mp3Support "--enable-libmp3lame"
|
||||||
|
++ stdenv.lib.optional speexSupport "--enable-libspeex"
|
||||||
|
++ stdenv.lib.optional theoraSupport "--enable-libtheora"
|
||||||
|
++ stdenv.lib.optional vorbisSupport "--enable-libvorbis"
|
||||||
|
++ stdenv.lib.optional vpxSupport "--enable-libvpx"
|
||||||
|
++ stdenv.lib.optional x264Support "--enable-libx264"
|
||||||
|
++ stdenv.lib.optional xvidSupport "--enable-libxvid"
|
||||||
|
++ stdenv.lib.optional faacSupport "--enable-libfaac --enable-nonfree";
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig lame yasm ]
|
||||||
|
++ stdenv.lib.optional mp3Support lame
|
||||||
|
++ stdenv.lib.optional speexSupport speex
|
||||||
|
++ stdenv.lib.optional theoraSupport libtheora
|
||||||
|
++ stdenv.lib.optional vorbisSupport libvorbis
|
||||||
|
++ stdenv.lib.optional vpxSupport libvpx
|
||||||
|
++ stdenv.lib.optional x264Support x264
|
||||||
|
++ stdenv.lib.optional xvidSupport xvidcore
|
||||||
|
++ stdenv.lib.optional faacSupport faac;
|
||||||
|
|
||||||
|
crossAttrs = {
|
||||||
|
dontSetConfigureCross = true;
|
||||||
|
configureFlags = configureFlags ++ [
|
||||||
|
"--cross-prefix=${stdenv.cross.config}-"
|
||||||
|
"--enable-cross-compile"
|
||||||
|
"--target_os=linux"
|
||||||
|
"--arch=${stdenv.cross.arch}"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.ffmpeg.org/;
|
||||||
|
description = "A complete, cross-platform solution to record, convert and stream audio and video";
|
||||||
|
};
|
||||||
|
}
|
@ -15,6 +15,7 @@ assert vorbisSupport -> libvorbis != null;
|
|||||||
assert vpxSupport -> libvpx != null;
|
assert vpxSupport -> libvpx != null;
|
||||||
assert x264Support -> x264 != null;
|
assert x264Support -> x264 != null;
|
||||||
assert xvidSupport -> xvidcore != null;
|
assert xvidSupport -> xvidcore != null;
|
||||||
|
assert faacSupport -> faac != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ffmpeg-0.7-rc1";
|
name = "ffmpeg-0.7-rc1";
|
||||||
|
@ -657,7 +657,9 @@ let
|
|||||||
|
|
||||||
ftgl = callPackage ../development/libraries/ftgl { };
|
ftgl = callPackage ../development/libraries/ftgl { };
|
||||||
|
|
||||||
fuppes = callPackage ../tools/networking/fuppes {};
|
fuppes = callPackage ../tools/networking/fuppes {
|
||||||
|
ffmpeg = ffmpeg_0_6_90;
|
||||||
|
};
|
||||||
|
|
||||||
fsfs = callPackage ../tools/filesystems/fsfs { };
|
fsfs = callPackage ../tools/filesystems/fsfs { };
|
||||||
|
|
||||||
@ -3100,6 +3102,10 @@ let
|
|||||||
vpxSupport = if !stdenv.isMips then true else false;
|
vpxSupport = if !stdenv.isMips then true else false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ffmpeg_0_6_90 = callPackage ../development/libraries/ffmpeg/0.6.90.nix {
|
||||||
|
vpxSupport = if !stdenv.isMips then true else false;
|
||||||
|
};
|
||||||
|
|
||||||
fftw = callPackage ../development/libraries/fftw {
|
fftw = callPackage ../development/libraries/fftw {
|
||||||
singlePrecision = false;
|
singlePrecision = false;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user