2009-03-10 22:03:51 +01:00
|
|
|
{ stdenv, fetchurl, perl, xlibs, libdvdnav
|
2009-03-11 00:28:06 +01:00
|
|
|
, zlib, a52dec, libmad, faad2, ffmpeg, alsa
|
2009-03-10 23:45:27 +01:00
|
|
|
, pkgconfig, dbus, hal, fribidi, qt4, freefont_ttf
|
2010-07-14 17:02:34 +02:00
|
|
|
, libvorbis, libtheora, speex, lua, libgcrypt, libupnp
|
2011-02-09 22:11:30 +01:00
|
|
|
, libcaca, pulseaudio, flac, schroedinger, libxml2, librsvg
|
|
|
|
, mpeg2dec, udev, gnutls, avahi, libcddb, jackaudio, SDL, SDL_image
|
|
|
|
, libmtp, unzip, taglib, libkate, libtiger, libv4l, samba, liboggz
|
2011-04-16 13:31:36 +02:00
|
|
|
, libass, libva
|
2006-06-29 14:41:25 +02:00
|
|
|
}:
|
2003-12-03 22:58:16 +01:00
|
|
|
|
2011-02-09 22:11:30 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "vlc-${version}";
|
2011-04-25 12:53:07 +02:00
|
|
|
version = "1.1.9";
|
2011-02-09 22:11:30 +01:00
|
|
|
|
|
|
|
patchPhase = ''sed -e "s@/bin/echo@echo@g" -i configure'';
|
2003-12-03 22:58:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-02-09 22:11:30 +01:00
|
|
|
url = "mirror://sourceforge/vlc/${name}.tar.bz2";
|
2011-04-25 12:53:07 +02:00
|
|
|
sha256 = "02rdrfxh7d70yxz0qinmkw2jad2hxzfrw0r1hiyyxandrgg73ggh";
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
|
2004-04-02 17:36:14 +02:00
|
|
|
buildInputs = [
|
2011-02-09 22:11:30 +01:00
|
|
|
perl zlib a52dec libmad faad2 ffmpeg alsa libdvdnav libdvdnav.libdvdread
|
|
|
|
pkgconfig dbus hal fribidi qt4 libvorbis libtheora speex lua libgcrypt
|
|
|
|
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
|
|
|
|
]
|
2011-04-16 13:31:36 +02:00
|
|
|
++ (with xlibs; [ xlibs.xlibs libXv libXvMC libXpm xcbutil libva ]);
|
2006-06-30 01:48:19 +02:00
|
|
|
|
2010-06-25 20:34:35 +02:00
|
|
|
configureFlags = [ "--enable-alsa"
|
|
|
|
"--disable-glx"
|
|
|
|
"--disable-remoteosd"
|
|
|
|
"--disable-dbus"
|
|
|
|
"--disable-dbus-control"
|
2011-02-09 22:11:30 +01:00
|
|
|
"--with-kde-solid=$out/share/apps/solid/actions"
|
2010-06-25 20:34:35 +02:00
|
|
|
];
|
2009-03-10 23:45:27 +01:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
substituteInPlace modules/misc/freetype.c --replace \
|
|
|
|
/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf \
|
|
|
|
${freefont_ttf}/share/fonts/truetype/FreeSerifBold.ttf
|
|
|
|
'';
|
2006-10-12 12:53:16 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Cross-platform media player and streaming server";
|
2007-12-31 18:55:13 +01:00
|
|
|
homepage = http://www.videolan.org/vlc/;
|
2006-10-12 12:53:16 +02:00
|
|
|
};
|
2003-12-03 22:58:16 +01:00
|
|
|
}
|