summary refs log tree commit diff
path: root/pkgs/applications/video/vlc/default.nix
blob: f4540a882f5345871257307d34d09010209b53ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, x11, 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;

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
  ];

  configureFlags = "--disable-ffmpeg --enable-alsa";
}