44ac9e249c
* VLC: updated to 0.9.8a. It now uses Qt for the GUI, which looks a lot better than the wxWidgets one. * libdvdread, libdvdnav: updated to 4.1.3. * ffmpeg: updated to 0.5 (a new release!). Got rid of the SVN version, which shouldn't be necessary anymore. svn path=/nixpkgs/trunk/; revision=14500
26 lines
558 B
Nix
26 lines
558 B
Nix
{stdenv, fetchurl, libdvdread}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libdvdnav-4.1.3";
|
|
|
|
src = fetchurl {
|
|
url = http://www2.mplayerhq.hu/MPlayer/releases/dvdnav/libdvdnav-4.1.3.tar.bz2;
|
|
sha1 = "d1b95eb8a7caee1fa7580a1abad84d6cb3cad046";
|
|
};
|
|
|
|
buildInputs = [libdvdread];
|
|
|
|
configureScript = "./configure2"; # wtf?
|
|
|
|
preConfigure = ''
|
|
ensureDir $out
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.mplayerhq.hu/;
|
|
description = "A library that implements DVD navigation features such as DVD menus";
|
|
};
|
|
|
|
passthru = { inherit libdvdread; };
|
|
}
|