e42507d182
gazillion different servers. Resurrected some 25 missing files. svn path=/nixpkgs/trunk/; revision=2237
14 lines
317 B
Nix
14 lines
317 B
Nix
{stdenv, fetchurl, libdvdread}:
|
|
|
|
assert libdvdread != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libdvdplay-1.0.1";
|
|
src = fetchurl {
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/libdvdplay-1.0.1.tar.bz2;
|
|
md5 = "602bca4ef78d79aa87e5e8920d958a78";
|
|
};
|
|
buildInputs = [libdvdread];
|
|
inherit libdvdread;
|
|
}
|