mpv: clean up options
This commit is contained in:
parent
d7802dba5f
commit
41c1a62113
@ -13,25 +13,25 @@
|
|||||||
wayland ? null,
|
wayland ? null,
|
||||||
libxkbcommon ? null
|
libxkbcommon ? null
|
||||||
|
|
||||||
, rubberbandSupport ? !stdenv.isDarwin, rubberband ? null
|
, rubberbandSupport ? true, rubberband ? null
|
||||||
, xineramaSupport ? true, libXinerama ? null
|
, xineramaSupport ? true, libXinerama ? null
|
||||||
, xvSupport ? true, libXv ? null
|
, xvSupport ? true, libXv ? null
|
||||||
, sdl2Support ? true, SDL2 ? null
|
, sdl2Support ? true, SDL2 ? null
|
||||||
, alsaSupport ? !stdenv.isDarwin, alsaLib ? null
|
, alsaSupport ? true, alsaLib ? null
|
||||||
, screenSaverSupport ? true, libXScrnSaver ? null
|
, screenSaverSupport ? true, libXScrnSaver ? null
|
||||||
, vdpauSupport ? true, libvdpau ? null
|
, vdpauSupport ? true, libvdpau ? null
|
||||||
, dvdreadSupport ? !stdenv.isDarwin, libdvdread ? null
|
, dvdreadSupport ? true, libdvdread ? null
|
||||||
, dvdnavSupport ? dvdreadSupport, libdvdnav ? null
|
, dvdnavSupport ? true, libdvdnav ? null
|
||||||
, bluraySupport ? true, libbluray ? null
|
, bluraySupport ? true, libbluray ? null
|
||||||
, speexSupport ? true, speex ? null
|
, speexSupport ? true, speex ? null
|
||||||
, theoraSupport ? true, libtheora ? null
|
, theoraSupport ? true, libtheora ? null
|
||||||
, pulseSupport ? !stdenv.isDarwin, libpulseaudio ? null
|
, pulseSupport ? true, libpulseaudio ? null
|
||||||
, bs2bSupport ? true, libbs2b ? null
|
, bs2bSupport ? true, libbs2b ? null
|
||||||
, cacaSupport ? true, libcaca ? null
|
, cacaSupport ? true, libcaca ? null
|
||||||
, libpngSupport ? true, libpng ? null
|
, libpngSupport ? true, libpng ? null
|
||||||
, youtubeSupport ? true, youtube-dl ? null
|
, youtubeSupport ? true, youtube-dl ? null
|
||||||
, vaapiSupport ? true, libva ? null
|
, vaapiSupport ? true, libva ? null
|
||||||
, drmSupport ? !stdenv.isDarwin, libdrm ? null
|
, drmSupport ? true, libdrm ? null
|
||||||
, vapoursynthSupport ? false, vapoursynth ? null
|
, vapoursynthSupport ? false, vapoursynth ? null
|
||||||
, archiveSupport ? false, libarchive ? null
|
, archiveSupport ? false, libarchive ? null
|
||||||
, jackaudioSupport ? false, libjack2 ? null
|
, jackaudioSupport ? false, libjack2 ? null
|
||||||
@ -127,14 +127,15 @@ in stdenv.mkDerivation rec {
|
|||||||
python3 ${waf} configure --prefix=$out $configureFlags
|
python3 ${waf} configure --prefix=$out $configureFlags
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ docutils makeWrapper perl pkgconfig python3 which ];
|
nativeBuildInputs = [
|
||||||
|
docutils makeWrapper perl
|
||||||
|
pkgconfig python3 which
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
ffmpeg freetype libass libpthreadstubs
|
ffmpeg freetype libass libpthreadstubs
|
||||||
lua lua5_sockets libuchardet
|
lua luasocket libuchardet
|
||||||
] ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
] ++ optional alsaSupport alsaLib
|
||||||
libiconv Cocoa CoreAudio ])
|
|
||||||
++ optional alsaSupport alsaLib
|
|
||||||
++ optional xvSupport libXv
|
++ optional xvSupport libXv
|
||||||
++ optional theoraSupport libtheora
|
++ optional theoraSupport libtheora
|
||||||
++ optional xineramaSupport libXinerama
|
++ optional xineramaSupport libXinerama
|
||||||
@ -157,7 +158,10 @@ in stdenv.mkDerivation rec {
|
|||||||
++ optional archiveSupport libarchive
|
++ optional archiveSupport libarchive
|
||||||
++ optionals dvdnavSupport [ libdvdnav libdvdnav.libdvdread ]
|
++ optionals dvdnavSupport [ libdvdnav libdvdnav.libdvdread ]
|
||||||
++ optionals x11Support [ libX11 libXext mesa libXxf86vm ]
|
++ optionals x11Support [ libX11 libXext mesa libXxf86vm ]
|
||||||
++ optionals waylandSupport [ wayland libxkbcommon ];
|
++ optionals waylandSupport [ wayland libxkbcommon ]
|
||||||
|
++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
||||||
|
libiconv Cocoa CoreAudio
|
||||||
|
]);
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
@ -199,5 +203,4 @@ in stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
# TODO: investigate caca support
|
|
||||||
# TODO: investigate lua5_sockets bug
|
# TODO: investigate lua5_sockets bug
|
||||||
|
@ -16541,11 +16541,17 @@ with pkgs;
|
|||||||
};
|
};
|
||||||
|
|
||||||
mpv = callPackage ../applications/video/mpv rec {
|
mpv = callPackage ../applications/video/mpv rec {
|
||||||
lua = lua5_1;
|
lua = lua5_1;
|
||||||
lua5_sockets = lua5_1_sockets;
|
lua5_sockets = lua5_1_sockets;
|
||||||
youtube-dl = pythonPackages.youtube-dl;
|
youtube-dl = pythonPackages.youtube-dl;
|
||||||
libva = libva-full;
|
libva = libva-full;
|
||||||
waylandSupport = stdenv.isLinux;
|
waylandSupport = stdenv.isLinux;
|
||||||
|
alsaSupport = !stdenv.isDarwin;
|
||||||
|
pulseSupport = !stdenv.isDarwin;
|
||||||
|
rubberbandSupport = !stdenv.isDarwin;
|
||||||
|
dvdreadSupport = !stdenv.isDarwin;
|
||||||
|
dvdnavSupport = !stdenv.isDarwin;
|
||||||
|
drmSupport = !stdenv.isDarwin;
|
||||||
};
|
};
|
||||||
|
|
||||||
mpvScripts = {
|
mpvScripts = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user