* Play DVDs again with vlc.

svn path=/nixpkgs/trunk/; revision=5543
This commit is contained in:
Eelco Dolstra
2006-06-29 23:48:19 +00:00
parent 186c269c70
commit 3f45f2fe82
5 changed files with 22 additions and 20 deletions

View File

@@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libdvdnav-20050211";
src = fetchurl {
url = http://downloads.videolan.org/pub/videolan/vlc/0.8.4a/contrib/libdvdnav-20050211.tar.bz2;
md5 = "e1b1d45c8fdaf6a2dce3078bd3d7047d";
};
}

View File

@@ -1,13 +0,0 @@
{stdenv, fetchurl, libdvdread}:
assert libdvdread != null;
stdenv.mkDerivation {
name = "libdvdplay-1.0.1";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/libdvdplay-1.0.1.tar.bz2;
md5 = "602bca4ef78d79aa87e5e8920d958a78";
};
buildInputs = [libdvdread];
inherit libdvdread;
}