2013-12-09 01:25:32 +00:00
|
|
|
{ stdenv, fetchurl, fetchgit, freetype, pkgconfig, freefont_ttf, ffmpeg, libass
|
2014-04-19 19:16:00 +01:00
|
|
|
, lua, perl, libpthreadstubs
|
|
|
|
, lua5_sockets
|
2014-08-11 01:14:41 +01:00
|
|
|
, python3, docutils, which, lib
|
2013-12-09 01:25:32 +00:00
|
|
|
, x11Support ? true, libX11 ? null, libXext ? null, mesa ? null, libXxf86vm ? null
|
|
|
|
, xineramaSupport ? true, libXinerama ? null
|
|
|
|
, xvSupport ? true, libXv ? null
|
|
|
|
, sdl2Support? true, SDL2 ? null
|
|
|
|
, alsaSupport ? true, alsaLib ? null
|
|
|
|
, screenSaverSupport ? true, libXScrnSaver ? null
|
|
|
|
, vdpauSupport ? true, libvdpau ? null
|
|
|
|
, dvdreadSupport? true, libdvdread ? null
|
|
|
|
, dvdnavSupport ? true, libdvdnav ? null
|
|
|
|
, bluraySupport ? true, libbluray ? null
|
|
|
|
, speexSupport ? true, speex ? null
|
|
|
|
, theoraSupport ? true, libtheora ? null
|
2014-07-31 11:47:17 +01:00
|
|
|
, jackaudioSupport ? true, jack2 ? null
|
2013-12-09 01:25:32 +00:00
|
|
|
, pulseSupport ? true, pulseaudio ? null
|
|
|
|
, bs2bSupport ? false, libbs2b ? null
|
|
|
|
# For screenshots
|
|
|
|
, libpngSupport ? true, libpng ? null
|
|
|
|
# for Youtube support
|
2014-11-27 01:43:23 +00:00
|
|
|
, youtubeSupport ? false, youtubeDL ? null
|
2014-08-11 01:14:41 +01:00
|
|
|
, cacaSupport ? false, libcaca ? null
|
2014-09-27 21:18:42 +01:00
|
|
|
, vaapiSupport ? false, libva ? null
|
|
|
|
}:
|
2013-12-09 01:25:32 +00:00
|
|
|
|
|
|
|
assert x11Support -> (libX11 != null && libXext != null && mesa != null && libXxf86vm != null);
|
|
|
|
assert xineramaSupport -> (libXinerama != null && x11Support);
|
|
|
|
assert xvSupport -> (libXv != null && x11Support);
|
|
|
|
assert sdl2Support -> SDL2 != null;
|
|
|
|
assert alsaSupport -> alsaLib != null;
|
|
|
|
assert screenSaverSupport -> libXScrnSaver != null;
|
|
|
|
assert vdpauSupport -> libvdpau != null;
|
|
|
|
assert dvdreadSupport -> libdvdread != null;
|
|
|
|
assert dvdnavSupport -> libdvdnav != null;
|
|
|
|
assert bluraySupport -> libbluray != null;
|
|
|
|
assert speexSupport -> speex != null;
|
|
|
|
assert theoraSupport -> libtheora != null;
|
2014-07-31 11:47:17 +01:00
|
|
|
assert jackaudioSupport -> jack2 != null;
|
2013-12-09 01:25:32 +00:00
|
|
|
assert pulseSupport -> pulseaudio != null;
|
|
|
|
assert bs2bSupport -> libbs2b != null;
|
|
|
|
assert libpngSupport -> libpng != null;
|
2014-11-27 01:43:23 +00:00
|
|
|
assert youtubeSupport -> youtubeDL != null;
|
2013-12-09 01:25:32 +00:00
|
|
|
assert cacaSupport -> libcaca != null;
|
|
|
|
|
2014-04-19 19:16:00 +01:00
|
|
|
# Purity problem: Waf needed to be is downloaded by bootstrap.py
|
2013-12-09 01:25:32 +00:00
|
|
|
# but by purity reasons it should be avoided; thanks the-kenny to point it out!
|
2014-04-19 19:16:00 +01:00
|
|
|
# Now, it will just download and package Waf, mimetizing bootstrap.py behaviour
|
2013-12-09 01:25:32 +00:00
|
|
|
|
2014-03-22 09:01:42 +00:00
|
|
|
let
|
2013-12-09 01:25:32 +00:00
|
|
|
waf = fetchurl {
|
2015-01-30 20:42:11 +00:00
|
|
|
url = http://ftp.waf.io/pub/release/waf-1.8.5;
|
|
|
|
sha256 = "0gh266076pd9fzwkycskyd3kkv2kds9613blpxmn9w4glkiwmmh5";
|
2014-01-15 15:39:45 +00:00
|
|
|
};
|
|
|
|
|
2013-12-09 01:25:32 +00:00
|
|
|
in
|
|
|
|
|
2015-02-24 01:54:06 +00:00
|
|
|
with stdenv.lib;
|
2013-12-09 01:25:32 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-01-15 15:39:45 +00:00
|
|
|
name = "mpv-${version}";
|
2015-05-23 01:56:39 +01:00
|
|
|
version = "0.9.2";
|
2013-12-09 01:25:32 +00:00
|
|
|
|
2014-01-15 15:39:45 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/mpv-player/mpv/archive/v${version}.tar.gz";
|
2015-05-23 01:56:39 +01:00
|
|
|
sha256 = "0la7pmy75mq92kcrawdiw5idw6a46z7d15mlkgs0axyivdaqy560";
|
2013-12-09 01:25:32 +00:00
|
|
|
};
|
|
|
|
|
2015-05-23 01:56:39 +01:00
|
|
|
buildInputs =
|
2014-11-15 15:44:27 +00:00
|
|
|
[ python3 lua perl freetype pkgconfig ffmpeg libass docutils which libpthreadstubs lua5_sockets ]
|
2013-12-09 01:25:32 +00:00
|
|
|
++ optionals x11Support [ libX11 libXext mesa libXxf86vm ]
|
|
|
|
++ optional alsaSupport alsaLib
|
|
|
|
++ optional xvSupport libXv
|
|
|
|
++ optional theoraSupport libtheora
|
|
|
|
++ optional xineramaSupport libXinerama
|
|
|
|
++ optional dvdreadSupport libdvdread
|
|
|
|
++ optionals dvdnavSupport [ libdvdnav libdvdnav.libdvdread ]
|
|
|
|
++ optional bluraySupport libbluray
|
2014-07-31 11:47:17 +01:00
|
|
|
++ optional jackaudioSupport jack2
|
2013-12-09 01:25:32 +00:00
|
|
|
++ optional pulseSupport pulseaudio
|
|
|
|
++ optional screenSaverSupport libXScrnSaver
|
|
|
|
++ optional vdpauSupport libvdpau
|
|
|
|
++ optional speexSupport speex
|
|
|
|
++ optional bs2bSupport libbs2b
|
|
|
|
++ optional libpngSupport libpng
|
2014-11-27 01:43:23 +00:00
|
|
|
++ optional youtubeSupport youtubeDL
|
2013-12-09 01:25:32 +00:00
|
|
|
++ optional sdl2Support SDL2
|
|
|
|
++ optional cacaSupport libcaca
|
2014-08-11 01:14:41 +01:00
|
|
|
++ optional vaapiSupport libva
|
2013-12-09 01:25:32 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
# There are almost no need of "configure flags", but some libraries
|
|
|
|
# weren't detected; see the TODO comments below
|
|
|
|
|
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString x11Support "-lX11 -lXext";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
configurePhase = ''
|
2014-08-11 01:14:41 +01:00
|
|
|
python3 ${waf} configure --prefix=$out ${lib.optionalString vaapiSupport "--enable-vaapi"}
|
2013-12-09 01:25:32 +00:00
|
|
|
patchShebangs TOOLS
|
2013-12-09 01:25:32 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
python3 ${waf} build
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
python3 ${waf} install
|
|
|
|
# Maybe not needed, but it doesn't hurt anyway: a standard font
|
|
|
|
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
|
2013-12-09 01:25:32 +00:00
|
|
|
'';
|
|
|
|
|
2014-09-10 19:59:54 +01:00
|
|
|
meta = with stdenv.lib;{
|
2013-12-09 01:25:32 +00:00
|
|
|
description = "A movie player that supports many video formats (MPlayer and mplayer2 fork)";
|
|
|
|
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
|
|
|
'';
|
2014-09-10 19:59:54 +01:00
|
|
|
homepage = http://mpv.io;
|
|
|
|
license = licenses.gpl2Plus;
|
2014-12-12 03:16:17 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ AndersonTorres fuuzetsu ];
|
2014-09-10 19:59:54 +01:00
|
|
|
platforms = platforms.linux;
|
2013-12-09 01:25:32 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
# TODO: Wayland support
|
2014-04-19 19:16:00 +01:00
|
|
|
# TODO: investigate caca support
|
|
|
|
# TODO: investigate lua5_sockets bug
|