d97fa85adf
* Variability :-) Provide both Autoconf 2.59 and 2.60 (the former being the default for now). svn path=/nixpkgs/trunk/; revision=5539
12 lines
307 B
Nix
12 lines
307 B
Nix
{stdenv, fetchurl, libdvdcss}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libdvdread-0.9.6";
|
|
src = fetchurl {
|
|
url = http://www.dtek.chalmers.se/groups/dvd/dist/libdvdread-0.9.6.tar.gz;
|
|
md5 = "329401b84ad0b00aaccaad58f2fc393c";
|
|
};
|
|
configureFlags = "--with-libdvdcss=${libdvdcss}";
|
|
inherit libdvdcss;
|
|
}
|