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