* vlc and required packages. Finally a good DVD player :-)
svn path=/nixpkgs/trunk/; revision=574
This commit is contained in:
+10
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user