* Some VLC-related updates.

* Variability :-)  Provide both Autoconf 2.59 and 2.60 (the former
  being the default for now).

svn path=/nixpkgs/trunk/; revision=5539
This commit is contained in:
Eelco Dolstra
2006-06-29 12:41:25 +00:00
parent a96763545d
commit d97fa85adf
10 changed files with 61 additions and 35 deletions

View File

@@ -1,5 +0,0 @@
source $stdenv/setup
configureFlags="--with-libdvdcss=$libdvdcss"
genericBuild

View File

@@ -1,14 +1,11 @@
{stdenv, fetchurl, libdvdcss}:
assert libdvdcss != null;
stdenv.mkDerivation {
name = "libdvdread-20030812";
builder = ./builder.sh;
name = "libdvdread-0.9.6";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/libdvdread-20030812.tar.bz2;
md5 = "9d58beac7c2dfb98d00f4ed0ea3d7274";
url = http://www.dtek.chalmers.se/groups/dvd/dist/libdvdread-0.9.6.tar.gz;
md5 = "329401b84ad0b00aaccaad58f2fc393c";
};
buildInputs = libdvdcss;
configureFlags = "--with-libdvdcss=${libdvdcss}";
inherit libdvdcss;
}