d97fa85adf
* Variability :-) Provide both Autoconf 2.59 and 2.60 (the former being the default for now). svn path=/nixpkgs/trunk/; revision=5539
10 lines
227 B
Nix
10 lines
227 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libdvdcss-1.2.9";
|
|
src = fetchurl {
|
|
url = http://download.videolan.org/pub/libdvdcss/1.2.9/libdvdcss-1.2.9.tar.bz2;
|
|
md5 = "553383d898826c285afb2ee453b07868";
|
|
};
|
|
}
|