parent
ac19bf06b8
commit
b8f7063cac
|
@ -110,6 +110,7 @@
|
||||||
, openjpeg ? null # JPEG 2000 de/encoder
|
, openjpeg ? null # JPEG 2000 de/encoder
|
||||||
, opensslExtlib ? false, openssl ? null
|
, opensslExtlib ? false, openssl ? null
|
||||||
, libpulseaudio ? null # Pulseaudio input support
|
, libpulseaudio ? null # Pulseaudio input support
|
||||||
|
, rav1e ? null # AV1 encoder (focused on speed and safety)
|
||||||
, rtmpdump ? null # RTMP[E] support
|
, rtmpdump ? null # RTMP[E] support
|
||||||
#, libquvi ? null # Quvi input support
|
#, libquvi ? null # Quvi input support
|
||||||
, samba ? null # Samba protocol
|
, samba ? null # Samba protocol
|
||||||
|
@ -383,6 +384,7 @@ stdenv.mkDerivation rec {
|
||||||
(enableFeature (opensslExtlib && gplLicensing) "openssl")
|
(enableFeature (opensslExtlib && gplLicensing) "openssl")
|
||||||
(enableFeature (libpulseaudio != null) "libpulse")
|
(enableFeature (libpulseaudio != null) "libpulse")
|
||||||
#(enableFeature quvi "libquvi")
|
#(enableFeature quvi "libquvi")
|
||||||
|
(enableFeature (rav1e != null) "librav1e")
|
||||||
(enableFeature (rtmpdump != null) "librtmp")
|
(enableFeature (rtmpdump != null) "librtmp")
|
||||||
#(enableFeature (schroedinger != null) "libschroedinger")
|
#(enableFeature (schroedinger != null) "libschroedinger")
|
||||||
(enableFeature (SDL2 != null) "sdl2")
|
(enableFeature (SDL2 != null) "sdl2")
|
||||||
|
@ -419,7 +421,7 @@ stdenv.mkDerivation rec {
|
||||||
bzip2 celt dav1d fontconfig freetype frei0r fribidi game-music-emu gnutls gsm
|
bzip2 celt dav1d fontconfig freetype frei0r fribidi game-music-emu gnutls gsm
|
||||||
libjack2 ladspaH lame libaom libass libbluray libbs2b libcaca libdc1394 libmodplug libmysofa
|
libjack2 ladspaH lame libaom libass libbluray libbs2b libcaca libdc1394 libmodplug libmysofa
|
||||||
libogg libopus librsvg libssh libtheora libvdpau libvorbis libvpx libwebp libX11
|
libogg libopus librsvg libssh libtheora libvdpau libvorbis libvpx libwebp libX11
|
||||||
libxcb libXv libXext lzma openal openjpeg libpulseaudio rtmpdump opencore-amr
|
libxcb libXv libXext lzma openal openjpeg libpulseaudio rav1e rtmpdump opencore-amr
|
||||||
samba SDL2 soxr speex srt vid-stab vo-amrwbenc wavpack x264 x265 xavs xvidcore
|
samba SDL2 soxr speex srt vid-stab vo-amrwbenc wavpack x264 x265 xavs xvidcore
|
||||||
zeromq4 zlib
|
zeromq4 zlib
|
||||||
] ++ optionals openglExtlib [ libGL libGLU ]
|
] ++ optionals openglExtlib [ libGL libGLU ]
|
||||||
|
|
|
@ -12242,6 +12242,7 @@ in
|
||||||
openal = if stdenv.isDarwin then null else openal;
|
openal = if stdenv.isDarwin then null else openal;
|
||||||
libmfx = if stdenv.isDarwin then null else intel-media-sdk;
|
libmfx = if stdenv.isDarwin then null else intel-media-sdk;
|
||||||
libpulseaudio = if stdenv.isDarwin then null else libpulseaudio;
|
libpulseaudio = if stdenv.isDarwin then null else libpulseaudio;
|
||||||
|
rav1e = if stdenv.isDarwin then null else rav1e;
|
||||||
samba = if stdenv.isDarwin then null else samba;
|
samba = if stdenv.isDarwin then null else samba;
|
||||||
vid-stab = if stdenv.isDarwin then null else vid-stab;
|
vid-stab = if stdenv.isDarwin then null else vid-stab;
|
||||||
x265 = if stdenv.isDarwin then null else x265;
|
x265 = if stdenv.isDarwin then null else x265;
|
||||||
|
|
Loading…
Reference in New Issue