2012-02-22 20:29:33 +00:00
|
|
|
{ stdenv, fetchurl, xz, bzip2, perl, xlibs, libdvdnav, libbluray
|
2011-08-01 09:23:10 +00:00
|
|
|
, zlib, a52dec, libmad, faad2, ffmpeg, alsaLib
|
2012-01-26 08:36:18 +00:00
|
|
|
, pkgconfig, dbus, fribidi, qt4, freefont_ttf
|
|
|
|
, libvorbis, libtheora, speex, lua5, libgcrypt, libupnp
|
2011-02-09 21:11:30 +00:00
|
|
|
, libcaca, pulseaudio, flac, schroedinger, libxml2, librsvg
|
|
|
|
, mpeg2dec, udev, gnutls, avahi, libcddb, jackaudio, SDL, SDL_image
|
|
|
|
, libmtp, unzip, taglib, libkate, libtiger, libv4l, samba, liboggz
|
2013-04-07 18:03:30 +00:00
|
|
|
, libass, libva, libdvbpsi, libdc1394, libraw1394, libopus
|
2006-06-29 12:41:25 +00:00
|
|
|
}:
|
2003-12-03 21:58:16 +00:00
|
|
|
|
2011-02-09 21:11:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "vlc-${version}";
|
2013-04-12 08:37:11 +00:00
|
|
|
version = "2.0.6";
|
2011-02-09 21:11:30 +00:00
|
|
|
|
2003-12-03 21:58:16 +00:00
|
|
|
src = fetchurl {
|
2012-02-22 20:29:33 +00:00
|
|
|
url = "http://download.videolan.org/pub/videolan/vlc/${version}/${name}.tar.xz";
|
2013-04-12 08:37:11 +00:00
|
|
|
sha256 = "0qqrpry41vawihhggcx00vibbn73hxdal1gim1qnrqrcbq1rik1i";
|
2003-12-03 21:58:16 +00:00
|
|
|
};
|
|
|
|
|
2012-02-15 15:42:59 +00:00
|
|
|
buildInputs =
|
2012-02-22 20:29:33 +00:00
|
|
|
[ xz bzip2 perl zlib a52dec libmad faad2 ffmpeg alsaLib libdvdnav libdvdnav.libdvdread
|
|
|
|
libbluray dbus fribidi qt4 libvorbis libtheora speex lua5 libgcrypt
|
2012-02-15 15:42:59 +00:00
|
|
|
libupnp libcaca pulseaudio flac schroedinger libxml2 librsvg mpeg2dec
|
|
|
|
udev gnutls avahi libcddb jackaudio SDL SDL_image libmtp unzip taglib
|
|
|
|
libkate libtiger libv4l samba liboggz libass libdvbpsi libva
|
|
|
|
xlibs.xlibs xlibs.libXv xlibs.libXvMC xlibs.libXpm xlibs.xcbutilkeysyms
|
2013-04-07 18:03:30 +00:00
|
|
|
libdc1394 libraw1394 libopus
|
2012-02-15 15:42:59 +00:00
|
|
|
];
|
2006-06-29 23:48:19 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-01-26 08:36:18 +00:00
|
|
|
|
2012-02-15 15:42:59 +00:00
|
|
|
configureFlags =
|
|
|
|
[ "--enable-alsa"
|
|
|
|
"--with-kde-solid=$out/share/apps/solid/actions"
|
2012-05-08 09:49:38 +00:00
|
|
|
"--enable-dc1394"
|
2012-02-15 15:42:59 +00:00
|
|
|
];
|
|
|
|
|
2012-02-18 17:23:17 +00:00
|
|
|
preConfigure = ''sed -e "s@/bin/echo@echo@g" -i configure'';
|
|
|
|
|
2012-02-15 15:42:59 +00:00
|
|
|
enableParallelBuilding = true;
|
2009-03-10 22:45:27 +00:00
|
|
|
|
|
|
|
preBuild = ''
|
2012-02-22 20:29:33 +00:00
|
|
|
substituteInPlace modules/text_renderer/freetype.c --replace \
|
2009-03-10 22:45:27 +00:00
|
|
|
/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf \
|
|
|
|
${freefont_ttf}/share/fonts/truetype/FreeSerifBold.ttf
|
|
|
|
'';
|
2006-10-12 10:53:16 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Cross-platform media player and streaming server";
|
2007-12-31 17:55:13 +00:00
|
|
|
homepage = http://www.videolan.org/vlc/;
|
2006-10-12 10:53:16 +00:00
|
|
|
};
|
2003-12-03 21:58:16 +00:00
|
|
|
}
|