d811b4c9d8
* Zapping/VLC/MPlayer: use libXv. * MPlayer: upgrade to 1.0pre4. * Zapping: add libXext to the rpath. I don't understand why this is necessary. Zapping doesn't itself link against libXext, though some of its dependencies do. (Maybe this is due to `--export-dynamic'?) svn path=/nixpkgs/trunk/; revision=990
27 lines
765 B
Nix
27 lines
765 B
Nix
{ xvSupport ? true
|
|
, stdenv, fetchurl, x11, libXv, wxGTK, libdvdcss, libdvdplay
|
|
, mpeg2dec, a52dec, libmad, alsa}:
|
|
|
|
assert x11 != null && wxGTK != null && libdvdcss != null
|
|
&& libdvdplay != null && mpeg2dec != null && a52dec != null
|
|
&& libmad != null && alsa != null;
|
|
assert libdvdplay.libdvdread.libdvdcss == libdvdcss;
|
|
assert xvSupport -> libXv != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "vlc-0.7.1";
|
|
|
|
src = fetchurl {
|
|
url = http://download.videolan.org/pub/videolan/vlc/0.7.1/vlc-0.7.1.tar.gz;
|
|
md5 = "faa5e3162a3e9b3a3d8c3dcc06f70911";
|
|
};
|
|
|
|
buildInputs = [
|
|
x11 wxGTK libdvdcss libdvdplay libdvdplay.libdvdread
|
|
mpeg2dec a52dec libmad alsa
|
|
(if xvSupport then libXv else null)
|
|
];
|
|
|
|
configureFlags = "--disable-ffmpeg --enable-alsa";
|
|
}
|