2012-02-22 21:29:33 +01:00
|
|
|
{ stdenv, fetchurl, xz, bzip2, perl, xlibs, 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
|
2014-04-01 23:52:52 +02:00
|
|
|
, libvdpau
|
2014-11-18 02:33:10 +01:00
|
|
|
, onlyLibVLC ? false
|
|
|
|
, qt4 ? null, qt5 ? null, withQt5 ? false
|
2015-06-24 12:19:37 +02:00
|
|
|
, jackSupport ? false
|
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;
|
|
|
|
|
2015-02-28 23:23:58 +01:00
|
|
|
assert (withQt5 -> qt5 != null);
|
|
|
|
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}";
|
2015-05-11 07:34:53 +02:00
|
|
|
version = "2.2.1";
|
2011-02-09 22:11:30 +01:00
|
|
|
|
2003-12-03 22:58:16 +01:00
|
|
|
src = fetchurl {
|
2014-12-19 15:22:31 +01:00
|
|
|
url = "http://download.videolan.org/vlc/${version}/${name}.tar.xz";
|
2015-05-11 07:34:53 +02:00
|
|
|
sha256 = "1jqzrzrpw6932lbkf863xk8cfmn4z2ngbxz7w8ggmh4f6xz9sgal";
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
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
|
|
|
|
xlibs.xlibs xlibs.libXv xlibs.libXvMC xlibs.libXpm xlibs.xcbutilkeysyms
|
2014-04-01 23:52:52 +02:00
|
|
|
libdc1394 libraw1394 libopus libebml libmatroska libvdpau
|
2015-06-24 12:19:37 +02:00
|
|
|
]
|
|
|
|
++ (if withQt5 then with qt5; [ base ] else [qt4])
|
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
|
|
|
|
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"
|
2014-11-18 02:33:10 +01:00
|
|
|
]
|
|
|
|
++ optional onlyLibVLC "--disable-vlc";
|
2012-02-15 16:42:59 +01:00
|
|
|
|
2012-02-18 18:23:17 +01:00
|
|
|
preConfigure = ''sed -e "s@/bin/echo@echo@g" -i configure'';
|
|
|
|
|
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
|
|
|
}
|