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

199 lines
7 KiB
Nix
Raw Normal View History

2017-12-18 16:43:24 +00:00
{ stdenv, fetchurl, fetchFromGitHub, fetchpatch, makeWrapper
, docutils, perl, pkgconfig, python3, which, ffmpeg
2016-08-27 04:36:40 +00:00
, freefont_ttf, freetype, libass, libpthreadstubs
2016-08-24 19:35:38 +00:00
, lua, lua5_sockets, libuchardet, libiconv ? null, darwin
2016-08-27 04:36:40 +00:00
, x11Support ? true,
mesa ? null,
libX11 ? null,
libXext ? null,
libXxf86vm ? null
, waylandSupport ? false,
wayland ? null,
libxkbcommon ? null
2016-08-24 19:35:38 +00:00
, rubberbandSupport ? !stdenv.isDarwin, rubberband ? null
2016-08-27 04:36:40 +00:00
, xineramaSupport ? true, libXinerama ? null
, xvSupport ? true, libXv ? null
, sdl2Support ? true, SDL2 ? null
2016-08-24 19:35:38 +00:00
, alsaSupport ? !stdenv.isDarwin, alsaLib ? null
2016-08-27 04:36:40 +00:00
, screenSaverSupport ? true, libXScrnSaver ? null
, vdpauSupport ? true, libvdpau ? null
2016-08-24 19:35:38 +00:00
, dvdreadSupport ? !stdenv.isDarwin, libdvdread ? null
, dvdnavSupport ? dvdreadSupport, libdvdnav ? null
2016-08-27 04:36:40 +00:00
, bluraySupport ? true, libbluray ? null
, speexSupport ? true, speex ? null
, theoraSupport ? true, libtheora ? null
2016-08-24 19:35:38 +00:00
, pulseSupport ? !stdenv.isDarwin, libpulseaudio ? null
2016-08-27 04:36:40 +00:00
, bs2bSupport ? true, libbs2b ? null
, cacaSupport ? true, libcaca ? null
, libpngSupport ? true, libpng ? null
, youtubeSupport ? true, youtube-dl ? null
, vaapiSupport ? true, libva ? null
2017-02-25 20:34:54 +00:00
, drmSupport ? !stdenv.isDarwin, libdrm ? null
2016-08-27 04:36:40 +00:00
, vapoursynthSupport ? false, vapoursynth ? null
, archiveSupport ? false, libarchive ? null
2016-08-27 04:36:40 +00:00
, jackaudioSupport ? false, libjack2 ? null
# scripts you want to be loaded by default
, scripts ? []
}:
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 x11Support -> all available [mesa libX11 libXext libXxf86vm];
assert waylandSupport -> all available [wayland libxkbcommon];
2016-08-24 19:35:38 +00:00
assert rubberbandSupport -> available rubberband;
2016-08-27 04:36:40 +00:00
assert xineramaSupport -> x11Support && available libXinerama;
assert xvSupport -> x11Support && available libXv;
assert sdl2Support -> available SDL2;
assert alsaSupport -> available alsaLib;
assert screenSaverSupport -> available libXScrnSaver;
assert vdpauSupport -> available libvdpau;
assert dvdreadSupport -> available libdvdread;
assert dvdnavSupport -> available libdvdnav;
assert bluraySupport -> available libbluray;
assert speexSupport -> available speex;
assert theoraSupport -> available libtheora;
assert pulseSupport -> available libpulseaudio;
assert bs2bSupport -> available libbs2b;
assert cacaSupport -> available libcaca;
assert libpngSupport -> available libpng;
assert youtubeSupport -> available youtube-dl;
assert vapoursynthSupport -> available vapoursynth;
assert jackaudioSupport -> available libjack2;
assert archiveSupport -> available libarchive;
2016-08-27 04:36:40 +00:00
assert vaapiSupport -> available libva;
2016-11-03 11:53:06 +00:00
assert drmSupport -> available libdrm;
2015-05-28 13:30:36 +00:00
2016-08-27 04:36:40 +00:00
let
2015-05-28 13:30:36 +00:00
# Purity: Waf is normally downloaded by bootstrap.py, but
# for purity reasons this behavior should be avoided.
wafVersion = "1.9.8";
waf = fetchurl {
2016-08-24 22:47:13 +00:00
urls = [ "http://waf.io/waf-${wafVersion}"
"http://www.freehackers.org/~tnagy/release/waf-${wafVersion}" ];
sha256 = "1gsd3zza1wixv2vhvq3inp4vb71i41a1kbwqnwixhnvdmcmw8z8n";
2014-01-15 15:39:45 +00:00
};
2016-08-27 04:36:40 +00:00
in stdenv.mkDerivation rec {
2016-04-05 21:22:46 +00:00
name = "mpv-${version}";
2017-09-13 09:15:24 +00:00
version = "0.27.0";
2016-08-24 22:47:13 +00:00
src = fetchFromGitHub {
owner = "mpv-player";
2016-08-27 04:36:40 +00:00
repo = "mpv";
rev = "v${version}";
2017-09-13 09:15:24 +00:00
sha256 = "0746kmsg69675y5c70vn8imcr9d1zpjz97f27xr1vx00yjpd518v";
};
2017-12-18 16:43:24 +00:00
patches = [
(fetchpatch {
url = "https://github.com/mpv-player/mpv/commit/2ecf240b1cd20875991a5b18efafbe799864ff7f.patch";
sha256 = "1sr0770rvhsgz8d7ysr9qqp4g9gwdhgj8g3rgnz90wl49lgrykhb";
})
];
postPatch = ''
2015-05-28 13:30:36 +00:00
patchShebangs ./TOOLS/
'';
NIX_LDFLAGS = optionalString x11Support "-lX11 -lXext";
configureFlags = [
"--enable-libmpv-shared"
2016-08-27 04:36:40 +00:00
"--enable-manpage-build"
"--enable-zsh-comp"
2015-05-28 13:30:36 +00:00
"--disable-libmpv-static"
"--disable-static-build"
"--disable-build-date" # Purity
(enableFeature archiveSupport "libarchive")
(enableFeature dvdreadSupport "dvdread")
(enableFeature dvdnavSupport "dvdnav")
2016-08-27 04:36:40 +00:00
(enableFeature vaapiSupport "vaapi")
(enableFeature waylandSupport "wayland")
2017-10-15 20:26:00 +00:00
(enableFeature stdenv.isLinux "dvbin")
2016-08-27 04:36:40 +00:00
];
2015-05-28 13:30:36 +00:00
configurePhase = ''
2016-08-27 04:36:40 +00:00
python3 ${waf} configure --prefix=$out $configureFlags
2015-05-28 13:30:36 +00:00
'';
2016-08-27 04:36:40 +00:00
nativeBuildInputs = [ docutils makeWrapper perl pkgconfig python3 which ];
2015-05-28 13:30:36 +00:00
buildInputs = [
ffmpeg freetype libass libpthreadstubs
2016-08-24 19:35:38 +00:00
lua lua5_sockets libuchardet
2017-02-25 20:34:54 +00:00
] ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
libiconv Cocoa CoreAudio ])
++ optional alsaSupport alsaLib
2016-08-27 04:36:40 +00:00
++ optional xvSupport libXv
++ optional theoraSupport libtheora
++ optional xineramaSupport libXinerama
++ optional dvdreadSupport libdvdread
++ optional bluraySupport libbluray
++ optional jackaudioSupport libjack2
++ 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 vdpauSupport libvdpau
++ optional speexSupport speex
++ optional bs2bSupport libbs2b
++ optional libpngSupport libpng
++ optional youtubeSupport youtube-dl
++ optional sdl2Support SDL2
++ optional cacaSupport libcaca
++ optional vaapiSupport libva
2016-11-03 11:53:06 +00:00
++ optional drmSupport libdrm
2016-08-27 04:36:40 +00:00
++ optional vapoursynthSupport vapoursynth
++ optional archiveSupport libarchive
2016-08-27 04:36:40 +00:00
++ optionals dvdnavSupport [ libdvdnav libdvdnav.libdvdread ]
++ optionals x11Support [ libX11 libXext mesa libXxf86vm ]
++ optionals waylandSupport [ wayland libxkbcommon ];
enableParallelBuilding = true;
buildPhase = ''
2016-08-27 04:36:40 +00:00
python3 ${waf} build
'';
installPhase = ''
2016-08-27 04:36:40 +00:00
python3 ${waf} install
2015-05-28 13:30:36 +00:00
# Use a standard font
mkdir -p $out/share/mpv
ln -s ${freefont_ttf}/share/fonts/truetype/FreeSans.ttf $out/share/mpv/subfont.ttf
2015-05-28 13:30:36 +00:00
# Ensure youtube-dl is available in $PATH for MPV
wrapProgram $out/bin/mpv \
--add-flags "--scripts=${concatStringsSep "," scripts}" \
2016-08-27 04:36:40 +00:00
'' + optionalString youtubeSupport ''
--prefix PATH : "${youtube-dl}/bin" \
2016-08-27 04:36:40 +00:00
'' + optionalString vapoursynthSupport ''
2018-01-13 01:02:44 +00:00
--prefix PYTHONPATH : "${vapoursynth}/lib/${python3.libPrefix}/site-packages:$PYTHONPATH"
2016-11-23 03:52:07 +00:00
'' + ''
cp TOOLS/umpv $out/bin
wrapProgram $out/bin/umpv \
--set MPV "$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 = http://mpv.io;
license = licenses.gpl2Plus;
2017-02-26 09:15:30 +00:00
maintainers = with maintainers; [ AndersonTorres fuuzetsu fpletz ];
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.
'';
};
}
2015-11-02 18:33:31 +00:00
# TODO: investigate caca support
# TODO: investigate lua5_sockets bug