2003-12-03 22:58:16 +01:00
|
|
|
{stdenv, fetchurl, libdvdcss}:
|
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2009-03-10 22:03:51 +01:00
|
|
|
name = "libdvdread-4.1.3";
|
|
|
|
|
2003-12-03 22:58:16 +01:00
|
|
|
src = fetchurl {
|
2009-03-10 22:03:51 +01:00
|
|
|
url = http://www.mplayerhq.hu/MPlayer/releases/dvdnav/libdvdread-4.1.3.tar.bz2;
|
|
|
|
sha1 = "fc4c7ba3e49929191e057b435bc4f867583ea8d5";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [libdvdcss];
|
|
|
|
|
|
|
|
NIX_LDFLAGS = "-ldvdcss";
|
|
|
|
|
|
|
|
configureScript = "./configure2"; # wtf?
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
ensureDir $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
ln -s dvdread $out/include/libdvdread
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.mplayerhq.hu/;
|
|
|
|
description = "A library for reading DVDs";
|
2003-12-03 22:58:16 +01:00
|
|
|
};
|
|
|
|
}
|