44ac9e249c
* VLC: updated to 0.9.8a. It now uses Qt for the GUI, which looks a lot better than the wxWidgets one. * libdvdread, libdvdnav: updated to 4.1.3. * ffmpeg: updated to 0.5 (a new release!). Got rid of the SVN version, which shouldn't be necessary anymore. svn path=/nixpkgs/trunk/; revision=14500
27 lines
716 B
Nix
27 lines
716 B
Nix
{ stdenv, fetchurl, perl, xlibs, libdvdnav
|
|
, zlib, mpeg2dec, a52dec, libmad, ffmpeg, alsa
|
|
, pkgconfig, dbus, hal, fribidi, qt4
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "vlc-0.9.8a";
|
|
|
|
src = fetchurl {
|
|
url = http://download.videolan.org/pub/videolan/vlc/0.9.8a/vlc-0.9.8a.tar.bz2;
|
|
sha256 = "0kw2d7yh8rzb61j1q2cvnjinj1wxc9a7smxl7ckw1vwh6y02jz0r";
|
|
};
|
|
|
|
buildInputs = [
|
|
perl xlibs.xlibs xlibs.libXv zlib a52dec libmad ffmpeg alsa
|
|
libdvdnav libdvdnav.libdvdread
|
|
pkgconfig dbus hal fribidi qt4
|
|
];
|
|
|
|
configureFlags = "--enable-alsa --disable-glx --disable-remoteosd";
|
|
|
|
meta = {
|
|
description = "Cross-platform media player and streaming server";
|
|
homepage = http://www.videolan.org/vlc/;
|
|
};
|
|
}
|