* 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
+10
View File
@@ -0,0 +1,10 @@
#! /bin/sh
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd libdvdcss-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
strip -S $out/lib/*.a || exit 1
@@ -0,0 +1,10 @@
{stdenv, fetchurl}: derivation {
name = "libdvdcss-1.2.8";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://www.videolan.org/pub/videolan/vlc/0.6.2/contrib/libdvdcss-1.2.8.tar.gz;
md5 = "e35e4240b6ca0b66a0218065dffe6adb";
};
stdenv = stdenv;
}