1 {lib, stdenv, fetchurl, pkg-config, libdvdread}:
3 stdenv.mkDerivation rec {
8 url = "http://dvdnav.mplayerhq.hu/releases/libdvdnav-${version}.tar.xz";
9 sha256 = "7fca272ecc3241b6de41bbbf7ac9a303ba25cb9e0c82aa23901d3104887f2372";
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [libdvdread];
15 configureScript = "./configure2"; # wtf?
22 homepage = "http://dvdnav.mplayerhq.hu/";
23 description = "A library that implements DVD navigation features such as DVD menus";
24 license = lib.licenses.gpl2;
25 maintainers = [ lib.maintainers.wmertens ];
26 platforms = lib.platforms.linux;
29 passthru = { inherit libdvdread; };