2015-09-15 11:26:18 +02:00
|
|
|
{ stdenv, fetchurl, xz, bzip2, perl, xorg, libdvdnav, libbluray
|
2011-08-01 11:23:10 +02:00
|
|
|
, zlib, a52dec, libmad, faad2, ffmpeg, alsaLib
|
2014-11-18 02:33:10 +01:00
|
|
|
, pkgconfig, dbus, fribidi, freefont_ttf, libebml, libmatroska
|
2012-01-26 09:36:18 +01:00
|
|
|
, libvorbis, libtheora, speex, lua5, libgcrypt, libupnp
|
2015-05-27 21:42:15 +02:00
|
|
|
, libcaca, libpulseaudio, flac, schroedinger, libxml2, librsvg
|
2015-06-27 09:17:52 +02:00
|
|
|
, mpeg2dec, udev, gnutls, avahi, libcddb, libjack2, SDL, SDL_image
|
2011-02-09 22:11:30 +01:00
|
|
|
, libmtp, unzip, taglib, libkate, libtiger, libv4l, samba, liboggz
|
2013-04-07 20:03:30 +02:00
|
|
|
, libass, libva, libdvbpsi, libdc1394, libraw1394, libopus
|
2015-12-01 18:04:38 +01:00
|
|
|
, libvdpau, libsamplerate, live555, fluidsynth
|
2014-11-18 02:33:10 +01:00
|
|
|
, onlyLibVLC ? false
|
2015-09-27 17:01:11 +02:00
|
|
|
, qt4 ? null
|
2016-04-12 09:45:44 +02:00
|
|
|
, withQt5 ? false, qtbase ? null, qtx11extras ? null
|
2015-06-24 12:19:37 +02:00
|
|
|
, jackSupport ? false
|
2017-10-02 17:42:54 +02:00
|
|
|
, fetchpatch
|
2006-06-29 14:41:25 +02:00
|
|
|
}:
|
2003-12-03 22:58:16 +01:00
|
|
|
|
2014-11-18 02:33:10 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2016-04-12 09:45:44 +02:00
|
|
|
assert (withQt5 -> qtbase != null && qtx11extras != null);
|
2015-02-28 23:23:58 +01:00
|
|
|
assert (!withQt5 -> qt4 != null);
|
2014-11-18 02:33:10 +01:00
|
|
|
|
2011-02-09 22:11:30 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-09-26 16:37:49 +02:00
|
|
|
name = "vlc-${version}";
|
2017-12-21 01:18:52 +01:00
|
|
|
version = "2.2.8";
|
2011-02-09 22:11:30 +01:00
|
|
|
|
2003-12-03 22:58:16 +01:00
|
|
|
src = fetchurl {
|
2016-02-07 13:18:48 +01:00
|
|
|
url = "http://get.videolan.org/vlc/${version}/${name}.tar.xz";
|
2017-12-21 01:18:52 +01:00
|
|
|
sha256 = "1v32snw46rkgbdqdy3dssl2y13i8p2cr1cw1i18r6vdmiy24dw4v";
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
2016-03-28 14:35:47 +02:00
|
|
|
# Comment-out the Qt 5.5 version check, as we do apply the relevant patch.
|
|
|
|
# https://trac.videolan.org/vlc/ticket/16497
|
|
|
|
postPatch = if (!withQt5) then null else
|
|
|
|
"sed '/I78ef29975181ee22429c9bd4b11d96d9e68b7a9c/s/^/: #/' -i configure";
|
|
|
|
|
2012-02-15 16:42:59 +01:00
|
|
|
buildInputs =
|
2012-02-22 21:29:33 +01:00
|
|
|
[ xz bzip2 perl zlib a52dec libmad faad2 ffmpeg alsaLib libdvdnav libdvdnav.libdvdread
|
2014-11-18 02:33:10 +01:00
|
|
|
libbluray dbus fribidi libvorbis libtheora speex lua5 libgcrypt
|
2015-05-27 21:42:15 +02:00
|
|
|
libupnp libcaca libpulseaudio flac schroedinger libxml2 librsvg mpeg2dec
|
2015-06-24 12:19:37 +02:00
|
|
|
udev gnutls avahi libcddb SDL SDL_image libmtp unzip taglib
|
2012-02-15 16:42:59 +01:00
|
|
|
libkate libtiger libv4l samba liboggz libass libdvbpsi libva
|
2015-09-15 11:26:18 +02:00
|
|
|
xorg.xlibsWrapper xorg.libXv xorg.libXvMC xorg.libXpm xorg.xcbutilkeysyms
|
2015-10-26 14:40:23 +01:00
|
|
|
libdc1394 libraw1394 libopus libebml libmatroska libvdpau libsamplerate live555
|
2015-12-01 18:04:38 +01:00
|
|
|
fluidsynth
|
2015-06-24 12:19:37 +02:00
|
|
|
]
|
2015-09-27 17:01:11 +02:00
|
|
|
++ [(if withQt5 then qtbase else qt4)]
|
2016-04-12 09:45:44 +02:00
|
|
|
++ optional withQt5 qtx11extras
|
2015-06-27 09:17:52 +02:00
|
|
|
++ optional jackSupport libjack2;
|
2006-06-30 01:48:19 +02:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-01-26 09:36:18 +01:00
|
|
|
|
2015-10-26 14:40:23 +01:00
|
|
|
LIVE555_PREFIX = live555;
|
|
|
|
|
2017-04-19 03:28:08 +02:00
|
|
|
preConfigure = ''
|
|
|
|
sed -e "s@/bin/echo@echo@g" -i configure
|
|
|
|
'' + optionalString withQt5 ''
|
|
|
|
# Make sure we only *add* "-std=c++11" to CXXFLAGS instead of overriding the
|
|
|
|
# values figured out by configure (for example "-g -O2").
|
|
|
|
sed -i -re '/^ *CXXFLAGS=("[^$"]+")? *$/s/CXXFLAGS="?/&-std=c++11 /' \
|
|
|
|
configure
|
|
|
|
'';
|
|
|
|
|
2012-02-15 16:42:59 +01:00
|
|
|
configureFlags =
|
|
|
|
[ "--enable-alsa"
|
|
|
|
"--with-kde-solid=$out/share/apps/solid/actions"
|
2012-05-08 11:49:38 +02:00
|
|
|
"--enable-dc1394"
|
2014-03-23 17:24:12 +01:00
|
|
|
"--enable-ncurses"
|
2014-04-01 23:52:52 +02:00
|
|
|
"--enable-vdpau"
|
2015-05-15 05:26:16 +02:00
|
|
|
"--enable-dvdnav"
|
2015-09-18 00:57:52 +02:00
|
|
|
"--enable-samplerate"
|
2014-11-18 02:33:10 +01:00
|
|
|
]
|
|
|
|
++ optional onlyLibVLC "--disable-vlc";
|
2012-02-15 16:42:59 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2009-03-10 23:45:27 +01:00
|
|
|
|
|
|
|
preBuild = ''
|
2012-02-22 21:29:33 +01:00
|
|
|
substituteInPlace modules/text_renderer/freetype.c --replace \
|
2009-03-10 23:45:27 +01:00
|
|
|
/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf \
|
|
|
|
${freefont_ttf}/share/fonts/truetype/FreeSerifBold.ttf
|
|
|
|
'';
|
2006-10-12 12:53:16 +02:00
|
|
|
|
2013-12-08 19:19:11 +01:00
|
|
|
meta = with stdenv.lib; {
|
2006-10-12 12:53:16 +02:00
|
|
|
description = "Cross-platform media player and streaming server";
|
2007-12-31 18:55:13 +01:00
|
|
|
homepage = http://www.videolan.org/vlc/;
|
2013-12-08 19:19:11 +01:00
|
|
|
platforms = platforms.linux;
|
2014-02-16 16:30:30 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
2006-10-12 12:53:16 +02:00
|
|
|
};
|
2003-12-03 22:58:16 +01:00
|
|
|
}
|