* vlc and required packages. Finally a good DVD player :-)

svn path=/nixpkgs/trunk/; revision=574
This commit is contained in:
Eelco Dolstra
2003-12-03 21:58:16 +00:00
parent 1fde9ff92d
commit 57fd5644d2
17 changed files with 264 additions and 0 deletions

View File

@@ -315,6 +315,13 @@
libpng = libpng;
};
wxGTK = (import ../development/libraries/wxGTK) {
fetchurl = fetchurl;
stdenv = stdenv;
pkgconfig = pkgconfig;
gtk = gtk;
};
gnet = (import ../development/libraries/gnet) {
fetchurl = fetchurl;
stdenv = stdenv;
@@ -331,6 +338,38 @@
yacc = bison;
};
libdvdcss = (import ../development/libraries/libdvdcss) {
fetchurl = fetchurl;
stdenv = stdenv;
};
libdvdread = (import ../development/libraries/libdvdread) {
fetchurl = fetchurl;
stdenv = stdenv;
libdvdcss = libdvdcss;
};
libdvdplay = (import ../development/libraries/libdvdplay) {
fetchurl = fetchurl;
stdenv = stdenv;
libdvdread = libdvdread;
};
mpeg2dec = (import ../development/libraries/mpeg2dec) {
fetchurl = fetchurl;
stdenv = stdenv;
};
a52dec = (import ../development/libraries/a52dec) {
fetchurl = fetchurl;
stdenv = stdenv;
};
libmad = (import ../development/libraries/libmad) {
fetchurl = fetchurl;
stdenv = stdenv;
};
### SERVERS
@@ -444,6 +483,19 @@
x11 = xfree86;
};
vlc = (import ../applications/video/vlc) {
fetchurl = fetchurl;
stdenv = stdenv;
x11 = xfree86;
wxGTK = wxGTK;
libdvdcss = libdvdcss;
libdvdplay = libdvdplay;
mpeg2dec = mpeg2dec;
a52dec = a52dec;
libmad = libmad;
alsa = alsaLib;
};
gqview = (import ../applications/graphics/gqview) {
fetchurl = fetchurl;
stdenv = stdenv;