nixpkgs/pkgs/applications/video/mpv/default.nix

224 lines
8.4 KiB
Nix
Raw Normal View History

2020-11-24 04:20:00 +00:00
{ config, stdenv, fetchFromGitHub
, addOpenGLRunpath, docutils, perl, pkgconfig, python3, wafHook, which
2020-06-13 02:31:01 +00:00
, ffmpeg, freefont_ttf, freetype, libass, libpthreadstubs, mujs
, nv-codec-headers, lua, libuchardet, libiconv ? null
, CoreFoundation, Cocoa, CoreAudio, MediaPlayer
2016-08-27 04:36:40 +00:00
2019-02-03 15:33:13 +00:00
, waylandSupport ? stdenv.isLinux
, wayland ? null
, wayland-protocols ? null
, libxkbcommon ? null
2016-08-27 04:36:40 +00:00
, x11Support ? stdenv.isLinux
2019-11-10 16:44:34 +00:00
, libGLU, libGL ? null
, libX11 ? null
, libXext ? null
, libXxf86vm ? null
, libXrandr ? null
, cddaSupport ? false
, libcdio ? null
, libcdio-paranoia ? null
2019-01-19 00:04:27 +00:00
, vulkanSupport ? stdenv.isLinux
2019-10-25 15:52:58 +00:00
, libplacebo ? null
, shaderc ? null
2019-01-19 00:04:27 +00:00
, vulkan-headers ? null
2019-10-25 15:52:58 +00:00
, vulkan-loader ? null
, drmSupport ? stdenv.isLinux
, libdrm ? null
, mesa ? null
2019-01-19 00:04:27 +00:00
2019-02-03 15:33:13 +00:00
, alsaSupport ? stdenv.isLinux, alsaLib ? null
2020-11-25 19:06:16 +00:00
, archiveSupport ? true, libarchive ? null
2019-02-03 15:33:13 +00:00
, bluraySupport ? true, libbluray ? null
, bs2bSupport ? true, libbs2b ? null
, cacaSupport ? true, libcaca ? null
, cmsSupport ? true, lcms2 ? null
, dvdnavSupport ? stdenv.isLinux, libdvdnav ? null
2020-11-25 19:06:16 +00:00
, jackaudioSupport ? false, libjack2 ? null
2019-02-03 15:33:13 +00:00
, libpngSupport ? true, libpng ? null
2020-11-25 19:06:16 +00:00
, openalSupport ? true, openalSoft ? null
2019-02-03 15:33:13 +00:00
, pulseSupport ? config.pulseaudio or stdenv.isLinux, libpulseaudio ? null
2019-10-25 15:52:58 +00:00
, rubberbandSupport ? stdenv.isLinux, rubberband ? null
, screenSaverSupport ? true, libXScrnSaver ? null
2019-02-03 15:33:13 +00:00
, sdl2Support ? true, SDL2 ? null
2020-11-25 19:06:16 +00:00
, sixelSupport ? false, libsixel ? null
2019-02-03 15:33:13 +00:00
, speexSupport ? true, speex ? null
, swiftSupport ? false, swift ? null
2019-02-03 15:33:13 +00:00
, theoraSupport ? true, libtheora ? null
2019-10-25 15:52:58 +00:00
, vaapiSupport ? stdenv.isLinux, libva ? null
2020-11-25 19:06:16 +00:00
, vapoursynthSupport ? false, vapoursynth ? null
2019-02-03 15:33:13 +00:00
, vdpauSupport ? true, libvdpau ? null
, xineramaSupport ? stdenv.isLinux, libXinerama ? null
, xvSupport ? stdenv.isLinux, libXv ? null
2019-10-25 15:52:58 +00:00
, zimgSupport ? true, zimg ? null
}:
2016-08-27 04:36:40 +00:00
with stdenv.lib;
2016-08-24 19:35:38 +00:00
let
2016-08-27 04:36:40 +00:00
available = x: x != null;
in
assert alsaSupport -> available alsaLib;
assert archiveSupport -> available libarchive;
2016-08-27 04:36:40 +00:00
assert bluraySupport -> available libbluray;
assert bs2bSupport -> available libbs2b;
assert cacaSupport -> available libcaca;
2019-10-25 15:52:58 +00:00
assert cddaSupport -> all available [ libcdio libcdio-paranoia ];
assert cmsSupport -> available lcms2;
2019-10-25 15:52:58 +00:00
assert drmSupport -> all available [ libdrm mesa ];
assert dvdnavSupport -> available libdvdnav;
2016-08-27 04:36:40 +00:00
assert jackaudioSupport -> available libjack2;
assert libpngSupport -> available libpng;
assert openalSupport -> available openalSoft;
assert pulseSupport -> available libpulseaudio;
assert rubberbandSupport -> available rubberband;
assert screenSaverSupport -> available libXScrnSaver;
assert sdl2Support -> available SDL2;
2020-11-25 19:06:16 +00:00
assert sixelSupport -> available libsixel;
assert speexSupport -> available speex;
assert theoraSupport -> available libtheora;
2016-08-27 04:36:40 +00:00
assert vaapiSupport -> available libva;
assert vapoursynthSupport -> available vapoursynth;
assert vdpauSupport -> available libvdpau;
2019-10-25 15:52:58 +00:00
assert vulkanSupport -> all available [ libplacebo shaderc vulkan-headers vulkan-loader ];
assert waylandSupport -> all available [ wayland wayland-protocols libxkbcommon ];
2019-11-10 16:44:34 +00:00
assert x11Support -> all available [ libGLU libGL libX11 libXext libXxf86vm libXrandr ];
assert xineramaSupport -> x11Support && available libXinerama;
assert xvSupport -> x11Support && available libXv;
2019-10-25 15:52:58 +00:00
assert zimgSupport -> available zimg;
2015-05-28 13:30:36 +00:00
2016-08-27 04:36:40 +00:00
let
2019-10-25 15:52:58 +00:00
luaEnv = lua.withPackages (ps: with ps; [ luasocket ]);
2016-08-27 04:36:40 +00:00
in stdenv.mkDerivation rec {
pname = "mpv";
version = "0.33.0";
2016-08-24 22:47:13 +00:00
src = fetchFromGitHub {
2019-10-25 15:52:58 +00:00
owner = "mpv-player";
repo = "mpv";
2016-08-27 04:36:40 +00:00
rev = "v${version}";
sha256 = "sha256-3l32qQBpvWVjbLp5CZtO039oDQeH7C/cNAKtJxrzlRk=";
};
2017-12-18 16:43:24 +00:00
postPatch = ''
2015-05-28 13:30:36 +00:00
patchShebangs ./TOOLS/
'';
passthru = {
inherit
# The wrapper consults luaEnv and lua.version
luaEnv
lua
# In the wrapper, we want to reference vapoursynth which has the
# `python3` passthru attribute (which has the `sitePrefix`
# attribute). This way we'll be sure that in the wrapper we'll
# use the same python3.sitePrefix used to build vapoursynth.
vapoursynthSupport
vapoursynth
;
};
NIX_LDFLAGS = optionalString x11Support "-lX11 -lXext "
+ optionalString stdenv.isDarwin "-framework CoreFoundation";
2015-05-28 13:30:36 +00:00
wafConfigureFlags = [
2015-05-28 13:30:36 +00:00
"--enable-libmpv-shared"
2016-08-27 04:36:40 +00:00
"--enable-manpage-build"
2015-05-28 13:30:36 +00:00
"--disable-libmpv-static"
"--disable-static-build"
"--disable-build-date" # Purity
(enableFeature archiveSupport "libarchive")
(enableFeature cddaSupport "cdda")
(enableFeature dvdnavSupport "dvdnav")
(enableFeature openalSupport "openal")
2019-10-25 15:52:58 +00:00
(enableFeature sdl2Support "sdl2")
2020-11-25 19:06:16 +00:00
(enableFeature sixelSupport "sixel")
(enableFeature vaapiSupport "vaapi")
(enableFeature waylandSupport "wayland")
(enableFeature stdenv.isLinux "dvbin")
] # Disable whilst Swift isn't supported
++ stdenv.lib.optional (!swiftSupport) "--disable-macos-cocoa-cb";
2015-05-28 13:30:36 +00:00
2018-02-27 16:27:46 +00:00
nativeBuildInputs = [
addOpenGLRunpath docutils perl pkgconfig python3 wafHook which
]
++ optional swiftSupport swift;
2015-05-28 13:30:36 +00:00
buildInputs = [
2020-06-13 02:31:01 +00:00
ffmpeg freetype libass libpthreadstubs
2019-05-07 04:57:10 +00:00
luaEnv libuchardet mujs
2018-02-27 16:27:46 +00:00
] ++ optional alsaSupport alsaLib
++ optional archiveSupport libarchive
2016-08-27 04:36:40 +00:00
++ optional bluraySupport libbluray
++ optional bs2bSupport libbs2b
++ optional cacaSupport libcaca
++ optional cmsSupport lcms2
2016-08-27 04:36:40 +00:00
++ optional jackaudioSupport libjack2
++ optional libpngSupport libpng
++ optional openalSupport openalSoft
2016-08-27 04:36:40 +00:00
++ optional pulseSupport libpulseaudio
2016-08-24 19:35:38 +00:00
++ optional rubberbandSupport rubberband
++ optional screenSaverSupport libXScrnSaver
2016-08-27 04:36:40 +00:00
++ optional sdl2Support SDL2
2020-11-25 19:06:16 +00:00
++ optional sixelSupport libsixel
++ optional speexSupport speex
++ optional theoraSupport libtheora
2016-08-27 04:36:40 +00:00
++ optional vaapiSupport libva
++ optional vapoursynthSupport vapoursynth
++ optional vdpauSupport libvdpau
++ optional xineramaSupport libXinerama
++ optional xvSupport libXv
2019-10-25 15:52:58 +00:00
++ optional zimgSupport zimg
++ optional stdenv.isDarwin libiconv
2019-05-07 04:57:10 +00:00
++ optional stdenv.isLinux nv-codec-headers
++ optionals cddaSupport [ libcdio libcdio-paranoia ]
2019-10-25 15:52:58 +00:00
++ optionals drmSupport [ libdrm mesa ]
2016-08-27 04:36:40 +00:00
++ optionals dvdnavSupport [ libdvdnav libdvdnav.libdvdread ]
++ optionals waylandSupport [ wayland wayland-protocols libxkbcommon ]
2019-11-10 16:44:34 +00:00
++ optionals x11Support [ libX11 libXext libGLU libGL libXxf86vm libXrandr ]
2019-10-25 15:52:58 +00:00
++ optionals vulkanSupport [ libplacebo shaderc vulkan-headers vulkan-loader ]
++ optionals stdenv.isDarwin [ CoreFoundation Cocoa CoreAudio MediaPlayer ];
enableParallelBuilding = true;
postBuild = optionalString stdenv.isDarwin ''
python3 TOOLS/osxbundle.py -s build/mpv
'';
postInstall = ''
# Use a standard font
mkdir -p $out/share/mpv
ln -s ${freefont_ttf}/share/fonts/truetype/FreeSans.ttf $out/share/mpv/subfont.ttf
2016-11-23 03:52:07 +00:00
cp TOOLS/mpv_identify.sh $out/bin
2016-11-23 03:52:07 +00:00
cp TOOLS/umpv $out/bin
'' + optionalString stdenv.isDarwin ''
mkdir -p $out/Applications
cp -r build/mpv.app $out/Applications
2015-05-28 13:30:36 +00:00
'';
# Set RUNPATH so that libcuda in /run/opengl-driver(-32)/lib can be found.
# See the explanation in addOpenGLRunpath.
postFixup = optionalString stdenv.isLinux ''
addOpenGLRunpath $out/bin/mpv
'';
2015-05-28 13:30:36 +00:00
meta = with stdenv.lib; {
description = "A media player that supports many video formats (MPlayer and mplayer2 fork)";
homepage = "https://mpv.io";
2015-05-28 13:30:36 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres fpletz globin ma27 tadeokondrak ];
2016-08-24 19:35:38 +00:00
platforms = platforms.darwin ++ platforms.linux;
longDescription = ''
mpv is a free and open-source general-purpose video player,
based on the MPlayer and mplayer2 projects, with great
improvements above both.
'';
};
}