forked from mirrors/nixpkgs
Revert "ffmpeg: Add optional Jack audio support."
This reverts commit fe42f8add9
.
This commit is contained in:
parent
471a9615a2
commit
bf4c4d7a36
|
@ -1,5 +1,4 @@
|
|||
{ stdenv, fetchurl, pkgconfig, yasm, zlib, bzip2, alsaLib
|
||||
, jackSupport ? false, jackaudio ? null
|
||||
, mp3Support ? true, lame ? null
|
||||
, speexSupport ? true, speex ? null
|
||||
, theoraSupport ? true, libtheora ? null
|
||||
|
@ -13,7 +12,6 @@
|
|||
, x11grabSupport ? false, libXext ? null, libXfixes ? null
|
||||
}:
|
||||
|
||||
assert jackSupport -> jackaudio != null;
|
||||
assert speexSupport -> speex != null;
|
||||
assert theoraSupport -> libtheora != null;
|
||||
assert vorbisSupport -> libvorbis != null;
|
||||
|
@ -56,7 +54,6 @@ stdenv.mkDerivation rec {
|
|||
++ stdenv.lib.optional x11grabSupport "--enable-x11grab";
|
||||
|
||||
buildInputs = [ pkgconfig lame yasm zlib bzip2 alsaLib ]
|
||||
++ stdenv.lib.optional jackSupport jackaudio
|
||||
++ stdenv.lib.optional mp3Support lame
|
||||
++ stdenv.lib.optional speexSupport speex
|
||||
++ stdenv.lib.optional theoraSupport libtheora
|
||||
|
|
Loading…
Reference in a new issue